Home
last modified time | relevance | path

Searched refs:htmlElement (Results 1 – 25 of 224) sorted by relevance

123456789

/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@blueprintjs/core/src/components/html/
H A Dhtml.tsx23 function htmlElement<E extends HTMLElement>(
42 export const H1 = htmlElement<HTMLHeadingElement>("h1", HEADING);
43 export const H2 = htmlElement<HTMLHeadingElement>("h2", HEADING);
44 export const H3 = htmlElement<HTMLHeadingElement>("h3", HEADING);
45 export const H4 = htmlElement<HTMLHeadingElement>("h4", HEADING);
46 export const H5 = htmlElement<HTMLHeadingElement>("h5", HEADING);
47 export const H6 = htmlElement<HTMLHeadingElement>("h6", HEADING);
50 export const Code = htmlElement<HTMLElement>("code", CODE);
51 export const Pre = htmlElement<HTMLElement>("pre", CODE_BLOCK);
56 export const OL = htmlElement<HTMLOListElement>("ol", LIST);
[all …]
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/lib/php/Data/
H A DHighlight.php74 private $htmlElement; variable in Fossology\\Lib\\Data\\Highlight
83 * @param null|HtmlElement $htmlElement
85 …function __construct($start, $end, $type, $refStart=-1, $refEnd=-1, $infoText = "", $htmlElement =… argument
93 $this->htmlElement = $htmlElement;
206 return $this->htmlElement;
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/lib/php/View/test/
H A DHighlightRendererTest.php38 private $htmlElement; variable in Fossology\\Lib\\View\\HighlightRendererTest
59 $this->htmlElement = M::mock(SimpleHtmlElement::class);
60 $this->htmlElement->shouldReceive('getOpeningText')->andReturn('<element>');
61 $this->htmlElement->shouldReceive('getClosingText')->andReturn('</element>');
82 $this->highlight->shouldReceive('getHtmlElement')->andReturn($this->htmlElement);
117 $this->highlight->shouldReceive('getHtmlElement')->andReturn($this->htmlElement);
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/lib/php/View/
H A DHighlightRenderer.php65 $htmlElement = $highlight->getHtmlElement();
66 if ($htmlElement) {
67 $wrappendElement = $htmlElement->getOpeningText();
85 $htmlElement = $highlight->getHtmlElement();
86 if ($htmlElement) {
87 $wrappendElement = $htmlElement->getClosingText();
/dports/net/storj/storj-1.45.3/web/storagenode/src/app/components/
H A DOptionsDropdown.vue45 const htmlElement = document.documentElement;
49 htmlElement.setAttribute('theme', SNO_THEME.LIGHT);
54 htmlElement.setAttribute('theme', theme);
70 const htmlElement = document.documentElement;
74 htmlElement.setAttribute('theme', SNO_THEME.DARK);
80 htmlElement.setAttribute('theme', SNO_THEME.LIGHT);
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/lib/php/Data/test/
H A DHighlightTest.php38 private $htmlElement; variable in Fossology\\Lib\\Data\\HighlightTest
47 $this->htmlElement = M::mock('Fossology\Lib\Html\HtmlElement');
49 …art, $this->end, $this->type, $this->refStart, $this->refEnd, $this->infoText, $this->htmlElement);
100 assertThat($this->highlight->getHtmlElement(), is($this->htmlElement));
/dports/net/messagelib/messagelib-21.12.3/templateparser/autotests/
H A Dtemplateextracthtmlelementfrommailtest.cpp22 QVERIFY(w.htmlElement().isEmpty()); in shouldHaveDefaultValue()
40 QVERIFY(w.htmlElement().isEmpty()); in shouldExtractHtml()
47 QCOMPARE(w.htmlElement(), html); in shouldExtractHtml()
/dports/lang/v8/v8-9.6.180.12/tools/turbolizer/src/
H A Dtext-view.ts124 addHtmlElementForInstructionId(anyInstructionId: any, htmlElement: HTMLElement) {
129 this.instructionIdToHtmlElementsMap.get(instructionId).push(htmlElement);
132 addHtmlElementForNodeId(anyNodeId: any, htmlElement: HTMLElement) {
137 this.nodeIdToHtmlElementsMap.get(nodeId).push(htmlElement);
140 addHtmlElementForBlockId(anyBlockId, htmlElement) {
145 this.blockIdToHtmlElementsMap.get(blockId).push(htmlElement);
/dports/devel/kf5-kfilemetadata/kfilemetadata-5.89.0/src/extractors/
H A Dappimageextractor.cpp134 auto htmlElement = descriptionDocument.createElement(QStringLiteral("html")); in extractDescription() local
135 descriptionDocument.appendChild(htmlElement); in extractDescription()
144 htmlElement.appendChild(clonedE); in extractDescription()
157 htmlElement.removeChild(clonedE); // reuse descriptionDocument in extractDescription()
163 htmlElement.appendChild(clonedE); in extractDescription()
/dports/lang/spidermonkey60/firefox-60.9.0/editor/libeditor/
H A DHTMLInlineTableEditor.cpp194 RefPtr<nsGenericHTMLElement> htmlElement = in RefreshInlineTableEditingUI() local
196 if (!htmlElement) { in RefreshInlineTableEditingUI()
203 wCell = htmlElement->OffsetWidth(); in RefreshInlineTableEditingUI()
204 hCell = htmlElement->OffsetHeight(); in RefreshInlineTableEditingUI()
/dports/mail/phplist/phplist-3.6.6/public_html/lists/admin/plugins/CommonPlugin/vendor/pelago/emogrifier/src/Emogrifier/HtmlProcessor/
H A DAbstractHtmlProcessor.php307 $htmlElement = $this->domDocument->getElementsByTagName('html')->item(0);
308 if ($htmlElement === null) {
311 $htmlElement->appendChild($this->domDocument->createElement('body'));
/dports/www/firefox-esr/firefox-91.8.0/layout/build/
H A DnsContentDLF.cpp235 nsCOMPtr<nsIContent> htmlElement = in CreateBlankDocument() local
252 if (!htmlElement || !headElement || !bodyElement) { in CreateBlankDocument()
257 blankDoc->AppendChildTo(htmlElement, false, rv); in CreateBlankDocument()
262 htmlElement->AppendChildTo(headElement, false, rv); in CreateBlankDocument()
268 htmlElement->AppendChildTo(bodyElement, false, rv); in CreateBlankDocument()
/dports/www/firefox/firefox-99.0/layout/build/
H A DnsContentDLF.cpp235 nsCOMPtr<nsIContent> htmlElement = in CreateBlankDocument() local
252 if (!htmlElement || !headElement || !bodyElement) { in CreateBlankDocument()
257 blankDoc->AppendChildTo(htmlElement, false, rv); in CreateBlankDocument()
262 htmlElement->AppendChildTo(headElement, false, rv); in CreateBlankDocument()
268 htmlElement->AppendChildTo(bodyElement, false, rv); in CreateBlankDocument()
/dports/mail/thunderbird/thunderbird-91.8.0/layout/build/
H A DnsContentDLF.cpp235 nsCOMPtr<nsIContent> htmlElement = in CreateBlankDocument() local
252 if (!htmlElement || !headElement || !bodyElement) { in CreateBlankDocument()
257 blankDoc->AppendChildTo(htmlElement, false, rv); in CreateBlankDocument()
262 htmlElement->AppendChildTo(headElement, false, rv); in CreateBlankDocument()
268 htmlElement->AppendChildTo(bodyElement, false, rv); in CreateBlankDocument()
/dports/lang/spidermonkey78/firefox-78.9.0/layout/build/
H A DnsContentDLF.cpp255 nsCOMPtr<nsIContent> htmlElement = in CreateBlankDocument() local
272 if (!htmlElement || !headElement || !bodyElement || in CreateBlankDocument()
273 NS_FAILED(blankDoc->AppendChildTo(htmlElement, false)) || in CreateBlankDocument()
274 NS_FAILED(htmlElement->AppendChildTo(headElement, false)) || in CreateBlankDocument()
276 NS_FAILED(htmlElement->AppendChildTo(bodyElement, false))) { in CreateBlankDocument()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit/qt/Api/
H A Dqwebelement.cpp1024 HTMLElement* htmlElement = static_cast<HTMLElement*>(m_element); in appendInside() local
1070 HTMLElement* htmlElement = static_cast<HTMLElement*>(m_element); in prependInside() local
1071 RefPtr<DocumentFragment> fragment = htmlElement->deprecatedCreateContextualFragment(markup); in prependInside()
1122 HTMLElement* htmlElement = static_cast<HTMLElement*>(m_element); in prependOutside() local
1123 RefPtr<DocumentFragment> fragment = htmlElement->deprecatedCreateContextualFragment(markup); in prependOutside()
1172 HTMLElement* htmlElement = static_cast<HTMLElement*>(m_element); in appendOutside() local
1173 RefPtr<DocumentFragment> fragment = htmlElement->deprecatedCreateContextualFragment(markup); in appendOutside()
1319 HTMLElement* htmlElement = static_cast<HTMLElement*>(m_element); in encloseContentsWith() local
1320 RefPtr<DocumentFragment> fragment = htmlElement->deprecatedCreateContextualFragment(markup); in encloseContentsWith()
1394 HTMLElement* htmlElement = static_cast<HTMLElement*>(m_element); in encloseWith() local
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/editor/libeditor/
H A DHTMLInlineTableEditor.cpp218 nsCOMPtr<nsIDOMHTMLElement> htmlElement = do_QueryInterface(mInlineEditedCell); in RefreshInlineTableEditingUI() local
219 if (!htmlElement) { in RefreshInlineTableEditingUI()
226 nsresult rv = htmlElement->GetOffsetWidth(&wCell); in RefreshInlineTableEditingUI()
228 rv = htmlElement->GetOffsetHeight(&hCell); in RefreshInlineTableEditingUI()
/dports/www/firefox-legacy/firefox-52.8.0esr/layout/build/
H A DnsContentDLF.cpp297 nsCOMPtr<nsIContent> htmlElement = in CreateBlankDocument() local
313 if (htmlElement && headElement && bodyElement) { in CreateBlankDocument()
316 rv = blankDoc->AppendChildTo(htmlElement, false); in CreateBlankDocument()
318 rv = htmlElement->AppendChildTo(headElement, false); in CreateBlankDocument()
322 htmlElement->AppendChildTo(bodyElement, false); in CreateBlankDocument()
/dports/sysutils/ldap-account-manager/ldap-account-manager-7.3/templates/config/
H A Dconfmodules.php9 use \htmlElement; alias
234 $delButton->alignment = htmlElement::ALIGN_RIGHT;
239 $selSortable->alignment = htmlElement::ALIGN_TOP;
259 $addButton->alignment = htmlElement::ALIGN_RIGHT;
263 $availDiv->alignment = htmlElement::ALIGN_TOP;
/dports/lang/spidermonkey60/firefox-60.9.0/layout/build/
H A DnsContentDLF.cpp253 nsCOMPtr<nsIContent> htmlElement = in CreateBlankDocument() local
270 if (!htmlElement || !headElement || !bodyElement || in CreateBlankDocument()
271 NS_FAILED(blankDoc->AppendChildTo(htmlElement, false)) || in CreateBlankDocument()
272 NS_FAILED(htmlElement->AppendChildTo(headElement, false)) || in CreateBlankDocument()
274 NS_FAILED(htmlElement->AppendChildTo(bodyElement, false))) { in CreateBlankDocument()
/dports/net-mgmt/librenms/librenms-vendor-21.5.1/tijsverkoyen/css-to-inline-styles/src/
H A DCssToInlineStyles.php132 $htmlElement = $document->documentElement;
133 $html = $document->saveHTML($htmlElement);
137 $document->removeChild($htmlElement);
/dports/www/tikiwiki/tiki-21.2/vendor_bundled/vendor/tijsverkoyen/css-to-inline-styles/src/
H A DCssToInlineStyles.php132 $htmlElement = $document->documentElement;
133 $html = $document->saveHTML($htmlElement);
137 $document->removeChild($htmlElement);
/dports/finance/prestashop/prestashop/vendor/tijsverkoyen/css-to-inline-styles/src/
H A DCssToInlineStyles.php132 $htmlElement = $document->documentElement;
133 $html = $document->saveHTML($htmlElement);
137 $document->removeChild($htmlElement);
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/tools/turbolizer/src/
H A Dtext-view.ts93 addHtmlElementForNodeId(anyNodeId: any, htmlElement: HTMLElement) {
98 this.nodeIdToHtmlElementsMap.get(nodeId).push(htmlElement);
101 addHtmlElementForBlockId(anyBlockId, htmlElement) {
106 this.blockIdToHtmlElementsMap.get(blockId).push(htmlElement);
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/tools/turbolizer/src/
H A Dtext-view.ts93 addHtmlElementForNodeId(anyNodeId: any, htmlElement: HTMLElement) {
98 this.nodeIdToHtmlElementsMap.get(nodeId).push(htmlElement);
101 addHtmlElementForBlockId(anyBlockId, htmlElement) {
106 this.blockIdToHtmlElementsMap.get(blockId).push(htmlElement);

123456789