Searched refs:tagName (Results 1 - 25 of 260) sorted by relevance

1234567891011

/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLStackItem.h135 const AtomicString& tagName = localName(); local
136 return tagName == HTMLNames::addressTag
137 || tagName == HTMLNames::appletTag
138 || tagName == HTMLNames::areaTag
139 || tagName == HTMLNames::articleTag
140 || tagName == HTMLNames::asideTag
141 || tagName == HTMLNames::baseTag
142 || tagName == HTMLNames::basefontTag
143 || tagName == HTMLNames::bgsoundTag
144 || tagName
[all...]
H A DHTMLTreeBuilderSimulator.cpp43 const String& tagName = token.data(); local
44 return threadSafeMatch(tagName, bTag)
45 || threadSafeMatch(tagName, bigTag)
46 || threadSafeMatch(tagName, blockquoteTag)
47 || threadSafeMatch(tagName, bodyTag)
48 || threadSafeMatch(tagName, brTag)
49 || threadSafeMatch(tagName, centerTag)
50 || threadSafeMatch(tagName, codeTag)
51 || threadSafeMatch(tagName, ddTag)
52 || threadSafeMatch(tagName, divTa
100 const String& tagName = token.data(); local
135 const String& tagName = token.data(); local
164 const String& tagName = token.data(); local
[all...]
H A DHTMLMetaCharsetParser.cpp100 String tagName = attemptStaticStringCreation(m_token.name(), Likely8Bit); local
102 m_tokenizer->updateStateFor(tagName);
103 if (threadSafeMatch(tagName, metaTag) && processMeta()) {
109 if (!threadSafeMatch(tagName, scriptTag) && !threadSafeMatch(tagName, noscriptTag)
110 && !threadSafeMatch(tagName, styleTag) && !threadSafeMatch(tagName, linkTag)
111 && !threadSafeMatch(tagName, metaTag) && !threadSafeMatch(tagName, objectTag)
112 && !threadSafeMatch(tagName, titleTa
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLHeadingElement.cpp28 inline HTMLHeadingElement::HTMLHeadingElement(const QualifiedName& tagName, Document& document) argument
29 : HTMLElement(tagName, document)
H A DHTMLUnknownElement.h40 static PassRefPtrWillBeRawPtr<HTMLUnknownElement> create(const QualifiedName& tagName, Document& document) argument
42 return adoptRefWillBeNoop(new HTMLUnknownElement(tagName, document));
48 HTMLUnknownElement(const QualifiedName& tagName, Document& document) argument
49 : HTMLElement(tagName, document) { }
H A DHTMLTablePartElement.h37 HTMLTablePartElement(const QualifiedName& tagName, Document& document) argument
38 : HTMLElement(tagName, document)
H A DLabelableElement.cpp33 LabelableElement::LabelableElement(const QualifiedName& tagName, Document& document) argument
34 : HTMLElement(tagName, document)
H A DHTMLModElement.cpp32 inline HTMLModElement::HTMLModElement(const QualifiedName& tagName, Document& document) argument
33 : HTMLElement(tagName, document)
H A DHTMLPreElement.cpp35 inline HTMLPreElement::HTMLPreElement(const QualifiedName& tagName, Document& document) argument
36 : HTMLElement(tagName, document)
H A DHTMLQuoteElement.cpp33 inline HTMLQuoteElement::HTMLQuoteElement(const QualifiedName& tagName, Document& document) argument
34 : HTMLElement(tagName, document)
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGUnknownElement.cpp36 inline SVGUnknownElement::SVGUnknownElement(const QualifiedName& tagName, Document& document) argument
37 : SVGElement(tagName, document)
/external/chromium_org/chrome/test/chromedriver/js/
H A Dis_option_element_toggleable.js6 if (option.tagName.toLowerCase() != 'option')
11 if (parent.tagName.toLowerCase() == 'select') {
/external/chromium-trace/trace-viewer/src/
H A Dui.js58 * @param {string} tagName The tagName of the newly created subtype. If
67 function define(tagName, opt_parentConstructor) {
68 if (typeof tagName == 'function') {
69 throw new Error('Passing functions as tagName is deprecated. Please ' +
70 'use (tagName, opt_parentConstructor) to subclass');
73 var tagName = tagName.toLowerCase();
74 if (opt_parentConstructor && !opt_parentConstructor.tagName)
88 tagName
[all...]
/external/chromium_org/tools/perf/utils/results_viewer/src/
H A Dui.js10 function createElementHelper(tagName, opt_bag) {
16 return doc.createElement(tagName);
34 * @param {string|Function} tagNameOrFunction The tagName or
42 var createFunction, tagName;
45 tagName = '';
48 tagName = tagNameOrFunction;
60 var el = createFunction(tagName, opt_propertyBag);
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dtag_watcher.js5 function watchForTag(tagName, cb) {
10 $Array.forEach(queryNode.querySelectorAll(tagName), function(node) {
22 if (addedNode.tagName == tagName)
32 // Expose a function to watch the |tagName| introduction via mutation observer.
34 // We employee mutation observer to watch on any introduction of |tagName|
44 function addTagWatcher(tagName, cb) {
50 watchForTag(tagName, cb);
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dfocus_util.js84 if (activeElement.tagName === 'TEXTAREA' ||
85 activeElement.tagName === 'SELECT') {
89 if (activeElement.tagName === 'INPUT') {
H A Ddom_predicates.js24 (nodes[i].tagName == 'INPUT' && nodes[i].type == 'checkbox')) {
40 (nodes[i].tagName == 'INPUT' && nodes[i].type == 'radio')) {
56 (nodes[i].tagName == 'INPUT' && nodes[i].type == 'range')) {
71 if (nodes[i].tagName == 'IMG' ||
72 (nodes[i].tagName == 'INPUT' && nodes[i].type == 'img')) {
88 nodes[i].tagName == 'BUTTON' ||
89 (nodes[i].tagName == 'INPUT' && nodes[i].type == 'submit') ||
90 (nodes[i].tagName == 'INPUT' && nodes[i].type == 'button') ||
91 (nodes[i].tagName == 'INPUT' && nodes[i].type == 'reset')) {
108 nodes[i].tagName
[all...]
H A Dmath_semantic_util.js92 cvox.SemanticUtil.tagName = function(node) {
93 return node.tagName.toUpperCase();
127 var tagName = cvox.SemanticUtil.tagName(node);
128 if (cvox.SemanticUtil.IGNORETAGS.indexOf(tagName) != -1) continue;
129 if (cvox.SemanticUtil.EMPTYTAGS.indexOf(tagName) != -1 &&
/external/chromium_org/testing/gtest/test/
H A Dgtest_xml_test_utils.py77 self.assertEquals(expected_node.tagName, actual_node.tagName)
84 actual_node.tagName, expected_attributes.keys(),
92 (expected_attr.name, actual_node.tagName))
96 (expected_attr.name, actual_node.tagName,
103 'number of child elements differ in element ' + actual_node.tagName)
107 (child_id, actual_children, actual_node.tagName))
133 self.assert_(child.tagName in self.identifying_attribute,
134 'Encountered unknown element <%s>' % child.tagName)
135 childID = child.getAttribute(self.identifying_attribute[child.tagName])
[all...]
/external/gtest/test/
H A Dgtest_xml_test_utils.py77 self.assertEquals(expected_node.tagName, actual_node.tagName)
84 actual_node.tagName, expected_attributes.keys(),
92 (expected_attr.name, actual_node.tagName))
96 (expected_attr.name, actual_node.tagName,
103 'number of child elements differ in element ' + actual_node.tagName)
107 (child_id, actual_children, actual_node.tagName))
133 self.assert_(child.tagName in self.identifying_attribute,
134 'Encountered unknown element <%s>' % child.tagName)
135 childID = child.getAttribute(self.identifying_attribute[child.tagName])
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DApplyBlockElementCommand.h41 ApplyBlockElementCommand(Document&, const QualifiedName& tagName, const AtomicString& inlineStyle);
42 ApplyBlockElementCommand(Document&, const QualifiedName& tagName);
46 const QualifiedName tagName() const { return m_tagName; } function in class:blink::ApplyBlockElementCommand
H A DFormatBlockCommand.h43 static PassRefPtrWillBeRawPtr<FormatBlockCommand> create(Document& document, const QualifiedName& tagName) argument
45 return adoptRefWillBeNoop(new FormatBlockCommand(document, tagName));
54 FormatBlockCommand(Document&, const QualifiedName& tagName);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dhtmlmixed.js32 var tagName = state.htmlState.tagName;
33 if (tagName) tagName = tagName.toLowerCase();
35 if (tagName == "script" && /\btag\b/.test(style) && stream.current() == ">") {
51 } else if (tagName == "style" && /\btag\b/.test(style) && stream.current() == ">") {
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DXML.java322 * @param tagName The optional name of the enclosing tag.
326 public static String toString(Object o, String tagName) argument
339 // Emit <tagName>
341 if (tagName != null) {
343 b.append(tagName);
409 if (tagName != null) {
414 b.append(tagName);
427 b.append(toString(v, (tagName == null) ? "array" : tagName));
432 return (tagName
[all...]
/external/protobuf/gtest/test/
H A Dgtest_xml_test_utils.py76 self.assertEquals(expected_node.tagName, actual_node.tagName)
82 "attribute numbers differ in element " + actual_node.tagName)
89 (expected_attr.name, actual_node.tagName))
92 (expected_attr.name, actual_node.tagName))
98 "number of child elements differ in element " + actual_node.tagName)
102 (child_id, actual_children, actual_node.tagName))
128 self.assert_(child.tagName in self.identifying_attribute,
129 "Encountered unknown element <%s>" % child.tagName)
130 childID = child.getAttribute(self.identifying_attribute[child.tagName])
[all...]

Completed in 5576 milliseconds

1234567891011