Home
last modified time | relevance | path

Searched refs:htmlDoc (Results 1 – 25 of 170) sorted by relevance

1234567

/dports/lang/nx/nsf2.3.0/library/xotcl/library/lib/
H A Dxodoc.xotcl40 $htmlDoc endTableCell
53 $htmlDoc endTableCell
75 $htmlDoc addLineBreak
78 $htmlDoc addLineBreak
79 $htmlDoc addLineBreak
82 $htmlDoc endTable
92 $htmlDoc addLineBreak
95 $htmlDoc endTable
149 $htmlDoc endTable
203 $htmlDoc endTable
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/sd/qa/unit/
H A DHtmlExportTest.cxx35 htmlDocUniquePtr htmlDoc = exportAndParseHtml(xDocShRef); in testHTMLExport() local
37 assertXPath(htmlDoc, "/html", 1); in testHTMLExport()
38 assertXPath(htmlDoc, "/html/body", 1); in testHTMLExport()
39 assertXPath(htmlDoc, "/html/body/h1", 4); in testHTMLExport()
40 assertXPath(htmlDoc, "/html/body/table", 1); in testHTMLExport()
41 assertXPath(htmlDoc, "/html/body/table/tr", 5); in testHTMLExport()
42 assertXPath(htmlDoc, "/html/body/ul", 1); in testHTMLExport()
43 assertXPath(htmlDoc, "/html/body/ul/li", 2); in testHTMLExport()
45 assertXPath(htmlDoc, "/html/head/meta[1]", "content", "text/html; charset=utf-8"); in testHTMLExport()
46 assertXPath(htmlDoc, "/html/head/meta[2]", "name", "generator"); in testHTMLExport()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sd/qa/unit/
H A DHtmlExportTest.cxx35 htmlDocPtr htmlDoc = exportAndParseHtml(xDocShRef); in testHTMLExport() local
37 assertXPath(htmlDoc, "/html", 1); in testHTMLExport()
38 assertXPath(htmlDoc, "/html/body", 1); in testHTMLExport()
39 assertXPath(htmlDoc, "/html/body/h1", 4); in testHTMLExport()
40 assertXPath(htmlDoc, "/html/body/table", 1); in testHTMLExport()
41 assertXPath(htmlDoc, "/html/body/table/tr", 5); in testHTMLExport()
42 assertXPath(htmlDoc, "/html/body/ul", 1); in testHTMLExport()
43 assertXPath(htmlDoc, "/html/body/ul/li", 2); in testHTMLExport()
45 assertXPath(htmlDoc, "/html/head/meta[1]", "content", "text/html; charset=utf-8"); in testHTMLExport()
46 assertXPath(htmlDoc, "/html/head/meta[2]", "name", "generator"); in testHTMLExport()
[all …]
/dports/www/gitea/gitea-1.16.5/integrations/
H A Dtimetracking_test.go41 htmlDoc := NewHTMLParser(t, resp.Body)
44 htmlDoc.AssertElement(t, ".timetrack .issue-add-time", canTrackTime)
47 "_csrf": htmlDoc.GetCSRF(),
54 htmlDoc = NewHTMLParser(t, resp.Body)
56 events := htmlDoc.doc.Find(".event > span.text")
59 htmlDoc.AssertElement(t, ".timetrack .issue-stop-time", true)
60 htmlDoc.AssertElement(t, ".timetrack .issue-cancel-time", true)
66 "_csrf": htmlDoc.GetCSRF(),
72 htmlDoc = NewHTMLParser(t, resp.Body)
74 events = htmlDoc.doc.Find(".event > span.text")
[all …]
H A Dissue_test.go73 htmlDoc := NewHTMLParser(t, resp.Body)
105 htmlDoc := NewHTMLParser(t, resp.Body)
128 htmlDoc := NewHTMLParser(t, resp.Body)
132 "_csrf": htmlDoc.GetCSRF(),
142 htmlDoc = NewHTMLParser(t, resp.Body)
163 "_csrf": htmlDoc.GetCSRF(),
172 htmlDoc = NewHTMLParser(t, resp.Body)
217 "_csrf": htmlDoc.GetCSRF(),
222 "_csrf": htmlDoc.GetCSRF(),
227 "_csrf": htmlDoc.GetCSRF(),
[all …]
H A Dbranches_test.go22 htmlDoc := NewHTMLParser(t, resp.Body)
23 _, exists := htmlDoc.doc.Find(".delete-branch-button").Attr("data-url")
36 htmlDoc, name := branchAction(t, ".undo-button")
38 htmlDoc.doc.Find(".ui.positive.message").Text(),
45 htmlDoc, name := branchAction(t, ".delete-branch-button")
47 htmlDoc.doc.Find(".ui.positive.message").Text(),
57 htmlDoc := NewHTMLParser(t, resp.Body)
58 link, exists := htmlDoc.doc.Find(button).Attr("data-url")
64 "_csrf": htmlDoc.GetCSRF(),
H A Dpull_create_test.go23 htmlDoc := NewHTMLParser(t, resp.Body)
34 htmlDoc = NewHTMLParser(t, resp.Body)
35 link, exists = htmlDoc.doc.Find("form.ui.form").Attr("action")
38 "_csrf": htmlDoc.GetCSRF(),
88 htmlDoc := NewHTMLParser(t, resp.Body)
93 "_csrf": htmlDoc.GetCSRF(),
100 htmlDoc = NewHTMLParser(t, resp.Body)
114 htmlDoc := NewHTMLParser(t, resp.Body)
117 "_csrf": htmlDoc.GetCSRF(),
127 htmlDoc := NewHTMLParser(t, resp.Body)
[all …]
H A Dsetting_test.go25 htmlDoc := NewHTMLParser(t, resp.Body)
27 htmlDoc.doc.Find(".ui.user.list").Text(),
35 htmlDoc = NewHTMLParser(t, resp.Body)
37 htmlDoc.doc.Find(".ui.user.list").Text(),
53 htmlDoc := NewHTMLParser(t, resp.Body)
55 htmlDoc.doc.Find(".user.profile").Text(),
63 htmlDoc = NewHTMLParser(t, resp.Body)
66 htmlDoc.doc.Find(".user.profile").Text(),
75 htmlDoc = NewHTMLParser(t, resp.Body)
77 htmlDoc.doc.Find(".user.profile").Text(),
H A Drepo_fork_test.go31 htmlDoc := NewHTMLParser(t, resp.Body)
32 link, exists := htmlDoc.doc.Find("a.ui.button[href^=\"/repo/fork/\"]").Attr("href")
38 htmlDoc = NewHTMLParser(t, resp.Body)
39 link, exists = htmlDoc.doc.Find("form.ui.form[action^=\"/repo/fork/\"]").Attr("action")
41 …_, exists = htmlDoc.doc.Find(fmt.Sprintf(".owner.dropdown .item[data-value=\"%d\"]", forkOwner.ID)…
44 "_csrf": htmlDoc.GetCSRF(),
72 htmlDoc := NewHTMLParser(t, resp.Body)
73 _, exists := htmlDoc.doc.Find("a.ui.button[href^=\"/repo/fork/\"]").Attr("href")
H A Drelease_test.go26 htmlDoc := NewHTMLParser(t, resp.Body)
28 link, exists := htmlDoc.doc.Find("form.ui.form").Attr("action")
32 "_csrf": htmlDoc.GetCSRF(),
55 htmlDoc := NewHTMLParser(t, resp.Body)
61 releaseList := htmlDoc.doc.Find("#release-list > li")
144 htmlDoc := NewHTMLParser(t, rsp.Body)
145 releases := htmlDoc.Find("#release-list li.ui.grid")
171 htmlDoc := NewHTMLParser(t, rsp.Body)
172 releases := htmlDoc.Find("#release-list li.ui.grid")
202 htmlDoc := NewHTMLParser(t, rsp.Body)
[all …]
H A Drepo_test.go41 htmlDoc := NewHTMLParser(t, resp.Body)
42 files := htmlDoc.doc.Find("#repo-files-table > TBODY > TR")
116 htmlDoc := NewHTMLParser(t, resp.Body)
117 link, exists := htmlDoc.doc.Find("#repo-clone-https").Attr("data-link")
120 _, exists = htmlDoc.doc.Find("#repo-clone-ssh").Attr("data-link")
132 htmlDoc := NewHTMLParser(t, resp.Body)
133 link, exists := htmlDoc.doc.Find("#repo-clone-https").Attr("data-link")
136 link, exists = htmlDoc.doc.Find("#repo-clone-ssh").Attr("data-link")
150 htmlDoc := NewHTMLParser(t, resp.Body)
178 htmlDoc := NewHTMLParser(t, resp.Body)
[all …]
H A Drepo_generate_test.go31 htmlDoc := NewHTMLParser(t, resp.Body)
32 link, exists := htmlDoc.doc.Find("a.ui.button[href^=\"/repo/create\"]").Attr("href")
38 htmlDoc = NewHTMLParser(t, resp.Body)
39 link, exists = htmlDoc.doc.Find("form.ui.form[action^=\"/repo/create\"]").Attr("action")
41 …_, exists = htmlDoc.doc.Find(fmt.Sprintf(".owner.dropdown .item[data-value=\"%d\"]", generateOwner…
44 "_csrf": htmlDoc.GetCSRF(),
H A Dprivateactivity_test.go58 return htmlDoc.doc.Find(".feeds").Find(".news").Length() > 0
65 htmlDoc := NewHTMLParser(t, resp.Body)
67 return testPrivateActivityHelperHasVisibleActivitiesInHTMLDoc(htmlDoc)
74 htmlDoc := NewHTMLParser(t, resp.Body)
82 return htmlDoc.doc.Find("#user-heatmap").Length() > 0
89 htmlDoc := NewHTMLParser(t, resp.Body)
91 return testPrivateActivityHelperHasVisibleHeatmapInHTMLDoc(htmlDoc)
98 htmlDoc := NewHTMLParser(t, resp.Body)
100 return testPrivateActivityHelperHasVisibleHeatmapInHTMLDoc(htmlDoc)
107 htmlDoc := NewHTMLParser(t, resp.Body)
[all …]
H A Dauth_ldap_test.go140 htmlDoc := NewHTMLParser(t, resp.Body)
142 assert.Equal(t, u.UserName, htmlDoc.GetInputValueByName("name"))
143 assert.Equal(t, u.FullName, htmlDoc.GetInputValueByName("full_name"))
144 assert.Equal(t, u.Email, htmlDoc.Find(`label[for="email"]`).Siblings().First().Text())
216 htmlDoc := NewHTMLParser(t, resp.Body)
218 tr := htmlDoc.doc.Find("table.table tbody tr")
245 htmlDoc := NewHTMLParser(t, resp.Body)
247 tr := htmlDoc.doc.Find("table.table tbody tr")
285 htmlDoc := NewHTMLParser(t, resp.Body)
287 divs := htmlDoc.doc.Find(".key.list .print.meta")
H A Drepo_activity_test.go49 htmlDoc := NewHTMLParser(t, resp.Body)
52 list := htmlDoc.doc.Find("#published-releases").Next().Find("p.desc")
56 list = htmlDoc.doc.Find("#merged-pull-requests").Next().Find("p.desc")
60 list = htmlDoc.doc.Find("#proposed-pull-requests").Next().Find("p.desc")
64 list = htmlDoc.doc.Find("#new-issues").Next().Find("p.desc")
H A Drepo_migrate_test.go21 htmlDoc := NewHTMLParser(t, resp.Body)
23 link, exists := htmlDoc.doc.Find("form.ui.form").Attr("action")
26 uid, exists := htmlDoc.doc.Find("#uid").Attr("value")
30 "_csrf": htmlDoc.GetCSRF(),
H A Dcompare_test.go21 htmlDoc := NewHTMLParser(t, resp.Body)
22 selection := htmlDoc.doc.Find(".choose.branch .filter.dropdown")
38 htmlDoc := NewHTMLParser(t, resp.Body)
39 selection := htmlDoc.doc.Find(".choose.branch .filter.dropdown")
H A Deditor_test.go98 htmlDoc := NewHTMLParser(t, resp.Body)
99 lastCommit := htmlDoc.GetInputValueByName("last_commit")
105 "_csrf": htmlDoc.GetCSRF(),
128 htmlDoc := NewHTMLParser(t, resp.Body)
129 lastCommit := htmlDoc.GetInputValueByName("last_commit")
135 "_csrf": htmlDoc.GetCSRF(),
H A Dxss_test.go34 htmlDoc := NewHTMLParser(t, resp.Body)
35 assert.EqualValues(t, 0, htmlDoc.doc.Find("script.evil").Length())
37 htmlDoc.doc.Find("div.content").Find(".header.text.center").Text(),
H A Dpull_merge_test.go38 htmlDoc := NewHTMLParser(t, resp.Body)
39 …link, exists := htmlDoc.doc.Find(".ui.form." + string(mergeStyle) + "-fields > form").Attr("action…
42 "_csrf": htmlDoc.GetCSRF(),
55 htmlDoc := NewHTMLParser(t, resp.Body)
56 link, exists := htmlDoc.doc.Find(".timeline-item .delete-button").Attr("data-url")
59 "_csrf": htmlDoc.GetCSRF(),
183 htmlDoc := NewHTMLParser(t, resp.Body)
184 resultMsg := htmlDoc.doc.Find(".ui.message>p").Text()
200 htmlDoc := NewHTMLParser(t, resp.Body)
201 text := strings.TrimSpace(htmlDoc.doc.Find(".merge-section > .item").Last().Text())
/dports/databases/p5-DBIWrapper/libdbiwrapper-perl-0.30/
H A Dtest.pl535 my $htmlDoc = $db->readHTML(sql => "SELECT name, value FROM test_tb ORDER BY name, value");
539 die $htmlDoc;
541 print $htmlDoc if ($verbose);
542 if ($htmlDoc eq $resultDoc)
549 print "resultDoc:\n$resultDoc\n\nhtmlDoc:\n$htmlDoc\n\n";
562 $htmlDoc = $db->readHTML(sql => "SELECT invalid FROM test_tb");
566 die $htmlDoc;
569 $htmlDoc =~ s/(blib\/lib\/DBIWrapper.pm)/DBIWrapper.pm/;
570 print $htmlDoc if ($verbose);
571 if ($htmlDoc eq $resultDoc)
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/docshell/base/
H A DnsDocShellEditorData.cpp140 nsCOMPtr<nsIHTMLDocument> htmlDoc = do_QueryInterface(doc); in DetachFromWindow() local
141 if (htmlDoc) { in DetachFromWindow()
142 mDetachedEditingState = htmlDoc->GetEditingState(); in DetachFromWindow()
162 nsCOMPtr<nsIHTMLDocument> htmlDoc = do_QueryInterface(doc); in ReattachToWindow() local
163 if (htmlDoc) { in ReattachToWindow()
164 htmlDoc->SetEditingState(mDetachedEditingState); in ReattachToWindow()
/dports/www/firefox-legacy/firefox-52.8.0esr/docshell/base/
H A DnsDocShellEditorData.cpp162 nsCOMPtr<nsIHTMLDocument> htmlDoc = do_QueryInterface(doc); in DetachFromWindow() local
163 if (htmlDoc) { in DetachFromWindow()
164 mDetachedEditingState = htmlDoc->GetEditingState(); in DetachFromWindow()
186 nsCOMPtr<nsIHTMLDocument> htmlDoc = do_QueryInterface(doc); in ReattachToWindow() local
187 if (htmlDoc) { in ReattachToWindow()
188 htmlDoc->SetEditingState(mDetachedEditingState); in ReattachToWindow()
/dports/lang/spidermonkey60/firefox-60.9.0/dom/base/
H A DWindowNamedPropertiesHandler.cpp120 nsCOMPtr<nsIHTMLDocument> htmlDoc = do_QueryInterface(win->GetExtantDoc()); in getOwnPropDescriptor() local
121 if (!htmlDoc) { in getOwnPropDescriptor()
124 nsHTMLDocument* document = static_cast<nsHTMLDocument*>(htmlDoc.get()); in getOwnPropDescriptor()
203 nsCOMPtr<nsIHTMLDocument> htmlDoc = do_QueryInterface(win->GetExtantDoc()); in ownPropNames() local
204 if (!htmlDoc) { in ownPropNames()
207 nsHTMLDocument* document = static_cast<nsHTMLDocument*>(htmlDoc.get()); in ownPropNames()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/Test/mainsoft/NunitWeb/NunitWeb/
H A DFormRequest.cs46 HtmlAgilityPack.HtmlDocument htmlDoc = new HtmlAgilityPack.HtmlDocument (); in ExtractFormAndHiddenControls()
47 htmlDoc.LoadHtml (response.Body); in ExtractFormAndHiddenControls()
51 htmlDoc.OptionOutputAsXml = true; in ExtractFormAndHiddenControls()
52 htmlDoc.Save (tsw); in ExtractFormAndHiddenControls()

1234567