Changeset 167588 in webkit
- Timestamp:
- Apr 21, 2014, 12:25:05 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 32 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r167585 r167588 1 2014-04-21 Commit Queue <commit-queue@webkit.org> 2 3 Unreviewed, rolling out r167584. 4 https://bugs.webkit.org/show_bug.cgi?id=131929 5 6 Broke Objective-C bindings test (Requested by ap on #webkit). 7 8 Reverted changeset: 9 10 "Add Element.matches, the standard name for 11 webkitMatchesSelector" 12 https://bugs.webkit.org/show_bug.cgi?id=131922 13 http://trac.webkit.org/changeset/167584 14 1 15 2014-04-20 Benjamin Poulain <benjamin@webkit.org> 2 16 -
trunk/LayoutTests/fast/dom/SelectorAPI/attrname-case-insensitive-expected.txt
r167584 r167588 1 1 PASS document.querySelector('div[baR]') is document.getElementById('bar') 2 PASS document.getElementById('bar').matches('div[baR]') is true3 2 PASS document.getElementById('bar').webkitMatchesSelector('div[baR]') is true 4 3 PASS document.querySelector('div[bar]') is document.getElementById('bar') 5 PASS document.getElementById('bar').matches('div[bar]') is true6 4 PASS document.getElementById('bar').webkitMatchesSelector('div[bar]') is true 7 5 PASS document.querySelector('div[BAR]') is document.getElementById('bar') 8 PASS document.getElementById('bar').matches('div[BAR]') is true9 6 PASS document.getElementById('bar').webkitMatchesSelector('div[BAR]') is true 10 7 PASS document.querySelector('div[bAR]') is document.getElementById('bar') 11 PASS document.getElementById('bar').matches('div[bAR]') is true12 8 PASS document.getElementById('bar').webkitMatchesSelector('div[bAR]') is true 13 9 PASS document.querySelector('div[baR="10"]') is document.getElementById('bar') 14 PASS document.getElementById('bar').matches('div[baR="10"]') is true15 10 PASS document.getElementById('bar').webkitMatchesSelector('div[baR="10"]') is true 16 11 PASS document.querySelector('div[bar="10"]') is document.getElementById('bar') 17 PASS document.getElementById('bar').matches('div[bar="10"]') is true18 12 PASS document.getElementById('bar').webkitMatchesSelector('div[bar="10"]') is true 19 13 PASS document.querySelector('div[BAR="10"]') is document.getElementById('bar') 20 PASS document.getElementById('bar').matches('div[BAR="10"]') is true21 14 PASS document.getElementById('bar').webkitMatchesSelector('div[BAR="10"]') is true 22 15 PASS document.querySelector('div[bAR="10"]') is document.getElementById('bar') 23 PASS document.getElementById('bar').matches('div[bAR="10"]') is true24 16 PASS document.getElementById('bar').webkitMatchesSelector('div[bAR="10"]') is true 25 17 PASS document.querySelector('path[pathLength]') is document.getElementById('pa') 26 PASS document.getElementById('pa').matches('path[pathLength]') is true27 18 PASS document.getElementById('pa').webkitMatchesSelector('path[pathLength]') is true 28 19 PASS content.querySelector('path[pathlength]') is null 29 20 PASS content.querySelector('path[pathLengTh]') is null 30 21 PASS document.querySelector('path[pathLength="200"]') is document.getElementById('pa') 31 PASS document.getElementById('pa').matches('path[pathLength="200"]') is true32 22 PASS document.getElementById('pa').webkitMatchesSelector('path[pathLength="200"]') is true 33 23 PASS content.querySelector('path[pathlength="200"]') is null -
trunk/LayoutTests/fast/dom/SelectorAPI/attrname-case-insensitive.html
r167584 r167588 19 19 function checkMatchingSelector(selector, elementId) { 20 20 shouldBe("document.querySelector('" + selector + "')", "document.getElementById('" + elementId + "')"); 21 shouldBeTrue("document.getElementById('" + elementId + "').matches('" + selector + "')");22 21 shouldBeTrue("document.getElementById('" + elementId + "').webkitMatchesSelector('" + selector + "')"); 23 22 } -
trunk/LayoutTests/fast/dom/SelectorAPI/attrname-case-sensitive-expected.txt
r167584 r167588 1 1 PASS document.querySelector('div[baR]') is document.getElementById('bar') 2 PASS document.getElementById('bar').matches('div[baR]') is true3 2 PASS document.getElementById('bar').webkitMatchesSelector('div[baR]') is true 4 3 PASS content.querySelector('div[bar]') is null … … 6 5 PASS content.querySelector('div[bAR]') is null 7 6 PASS document.querySelector('div[baR="10"]') is document.getElementById('bar') 8 PASS document.getElementById('bar').matches('div[baR="10"]') is true9 7 PASS document.getElementById('bar').webkitMatchesSelector('div[baR="10"]') is true 10 8 PASS content.querySelector('div[bar="10"]') is null … … 12 10 PASS content.querySelector('div[bAR="10"]') is null 13 11 PASS document.querySelector('path[pathLength]') is document.getElementById('pa') 14 PASS document.getElementById('pa').matches('path[pathLength]') is true15 12 PASS document.getElementById('pa').webkitMatchesSelector('path[pathLength]') is true 16 13 PASS content.querySelector('path[pathlength]') is null 17 14 PASS content.querySelector('path[pathLengTh]') is null 18 15 PASS document.querySelector('path[pathLength="200"]') is document.getElementById('pa') 19 PASS document.getElementById('pa').matches('path[pathLength="200"]') is true20 16 PASS document.getElementById('pa').webkitMatchesSelector('path[pathLength="200"]') is true 21 17 PASS content.querySelector('path[pathlength="200"]') is null -
trunk/LayoutTests/fast/dom/SelectorAPI/attrname-case-sensitive.xhtml
r167584 r167588 22 22 function checkMatchingSelector(selector, elementId) { 23 23 shouldBe("document.querySelector('" + selector + "')", "document.getElementById('" + elementId + "')"); 24 shouldBeTrue("document.getElementById('" + elementId + "').matches('" + selector + "')");25 24 shouldBeTrue("document.getElementById('" + elementId + "').webkitMatchesSelector('" + selector + "')"); 26 25 } -
trunk/LayoutTests/fast/dom/SelectorAPI/caseID-almost-strict-expected.txt
r167584 r167588 3 3 PASS document.querySelector('#UPPER1').textContent is 'UPPER 1' 4 4 PASS document.querySelector('#upper2') is null 5 PASS document.getElementById('lower1').matches('#lower1') is true6 PASS document.getElementById('lower2').matches('#LOWER2') is false7 PASS document.getElementById('UPPER1').matches('#UPPER1') is true8 PASS document.getElementById('UPPER2').matches('#upper2') is false9 5 PASS document.getElementById('lower1').webkitMatchesSelector('#lower1') is true 10 6 PASS document.getElementById('lower2').webkitMatchesSelector('#LOWER2') is false -
trunk/LayoutTests/fast/dom/SelectorAPI/caseID-almost-strict.html
r167584 r167588 17 17 shouldBeNull("document.querySelector('#upper2')"); 18 18 19 shouldBeTrue("document.getElementById('lower1').matches('#lower1')");20 shouldBeFalse("document.getElementById('lower2').matches('#LOWER2')");21 shouldBeTrue("document.getElementById('UPPER1').matches('#UPPER1')");22 shouldBeFalse("document.getElementById('UPPER2').matches('#upper2')");23 19 shouldBeTrue("document.getElementById('lower1').webkitMatchesSelector('#lower1')"); 24 20 shouldBeFalse("document.getElementById('lower2').webkitMatchesSelector('#LOWER2')"); -
trunk/LayoutTests/fast/dom/SelectorAPI/caseID-expected.txt
r167584 r167588 3 3 PASS document.querySelector('#UPPER1').textContent is 'UPPER 1' 4 4 PASS document.querySelector('#upper2').textContent is 'UPPER 2' 5 PASS document.getElementById('lower1').matches('#lower1') is true6 PASS document.getElementById('lower2').matches('#LOWER2') is true7 PASS document.getElementById('UPPER1').matches('#UPPER1') is true8 PASS document.getElementById('UPPER2').matches('#upper2') is true9 5 PASS document.getElementById('lower1').webkitMatchesSelector('#lower1') is true 10 6 PASS document.getElementById('lower2').webkitMatchesSelector('#LOWER2') is true -
trunk/LayoutTests/fast/dom/SelectorAPI/caseID-strict-expected.txt
r167584 r167588 3 3 PASS document.querySelector('#UPPER1').textContent is 'UPPER 1' 4 4 PASS document.querySelector('#upper2') is null 5 PASS document.getElementById('lower1').matches('#lower1') is true6 PASS document.getElementById('lower2').matches('#LOWER2') is false7 PASS document.getElementById('UPPER1').matches('#UPPER1') is true8 PASS document.getElementById('UPPER2').matches('#upper2') is false9 5 PASS document.getElementById('lower1').webkitMatchesSelector('#lower1') is true 10 6 PASS document.getElementById('lower2').webkitMatchesSelector('#LOWER2') is false -
trunk/LayoutTests/fast/dom/SelectorAPI/caseID-strict.html
r167584 r167588 17 17 shouldBeNull("document.querySelector('#upper2')"); 18 18 19 shouldBeTrue("document.getElementById('lower1').matches('#lower1')");20 shouldBeFalse("document.getElementById('lower2').matches('#LOWER2')");21 shouldBeTrue("document.getElementById('UPPER1').matches('#UPPER1')");22 shouldBeFalse("document.getElementById('UPPER2').matches('#upper2')");23 19 shouldBeTrue("document.getElementById('lower1').webkitMatchesSelector('#lower1')"); 24 20 shouldBeFalse("document.getElementById('lower2').webkitMatchesSelector('#LOWER2')"); -
trunk/LayoutTests/fast/dom/SelectorAPI/caseID.html
r167584 r167588 16 16 shouldBe("document.querySelector('#upper2').textContent", "'UPPER 2'"); 17 17 18 shouldBeTrue("document.getElementById('lower1').matches('#lower1')");19 shouldBeTrue("document.getElementById('lower2').matches('#LOWER2')");20 shouldBeTrue("document.getElementById('UPPER1').matches('#UPPER1')");21 shouldBeTrue("document.getElementById('UPPER2').matches('#upper2')");22 18 shouldBeTrue("document.getElementById('lower1').webkitMatchesSelector('#lower1')"); 23 19 shouldBeTrue("document.getElementById('lower2').webkitMatchesSelector('#LOWER2')"); -
trunk/LayoutTests/fast/dom/SelectorAPI/caseTag-expected.txt
r167584 r167588 1 1 PASS document.querySelector('div SPAN').textContent is 'lower' 2 2 PASS document.querySelector('div p').textContent is 'UPPER' 3 PASS document.getElementById('lower1').matches('div SPAN') is true4 PASS document.getElementById('UPPER1').matches('div p') is true5 3 PASS document.getElementById('lower1').webkitMatchesSelector('div SPAN') is true 6 4 PASS document.getElementById('UPPER1').webkitMatchesSelector('div p') is true -
trunk/LayoutTests/fast/dom/SelectorAPI/caseTag.html
r167584 r167588 12 12 shouldBe("document.querySelector('div p').textContent", "'UPPER'"); 13 13 14 shouldBeTrue("document.getElementById('lower1').matches('div SPAN')");15 shouldBeTrue("document.getElementById('UPPER1').matches('div p')");16 14 shouldBeTrue("document.getElementById('lower1').webkitMatchesSelector('div SPAN')"); 17 15 shouldBeTrue("document.getElementById('UPPER1').webkitMatchesSelector('div p')"); -
trunk/LayoutTests/fast/dom/SelectorAPI/caseTagX-expected.txt
r167584 r167588 1 1 PASS document.querySelector('div SPAN') is null 2 PASS document.getElementById('lower1').matches('div SPAN') is false3 2 PASS document.getElementById('lower1').webkitMatchesSelector('div SPAN') is false 4 3 PASS successfullyParsed is true -
trunk/LayoutTests/fast/dom/SelectorAPI/caseTagX.xhtml
r167584 r167588 16 16 shouldBeNull("document.querySelector('div SPAN')"); 17 17 18 shouldBeFalse("document.getElementById('lower1').matches('div SPAN')");19 18 shouldBeFalse("document.getElementById('lower1').webkitMatchesSelector('div SPAN')"); 20 19 ]]> -
trunk/LayoutTests/fast/dom/SelectorAPI/detached-element-expected.txt
r167584 r167588 12 12 PASS noChild.querySelector('div') is null 13 13 PASS noChild.querySelectorAll('div').length is 0 14 PASS correctNode.matches('div') is true15 PASS correctNode.matches('#testId') is true16 14 PASS correctNode.webkitMatchesSelector('div') is true 17 15 PASS correctNode.webkitMatchesSelector('#testId') is true -
trunk/LayoutTests/fast/dom/SelectorAPI/not-supported-namespace-in-selector-expected.txt
r167584 r167588 3 3 PASS: document.querySelector('bbb|pre') throws: Error: NamespaceError: DOM Exception 14 4 4 PASS: document.querySelectorAll('bbb|pre') throws: Error: NamespaceError: DOM Exception 14 5 PASS: document.body.matches('bbb|pre') throws: Error: NamespaceError: DOM Exception 146 5 PASS: document.body.webkitMatchesSelector('bbb|pre') throws: Error: NamespaceError: DOM Exception 14 7 6 PASS: document.querySelector('*|pre') did not throw 8 7 PASS: document.querySelectorAll('*|pre') did not throw 9 PASS: document.body.matches('*|pre') did not throw10 8 PASS: document.body.webkitMatchesSelector('*|pre') did not throw 11 9 PASS: document.querySelector('|pre') did not throw 12 10 PASS: document.querySelectorAll('|pre') did not throw 13 PASS: document.body.matches('|pre') did not throw14 11 PASS: document.body.webkitMatchesSelector('|pre') did not throw 15 12 PASS: document.querySelector('div bbb|pre') throws: Error: NamespaceError: DOM Exception 14 16 13 PASS: document.querySelectorAll('div bbb|pre') throws: Error: NamespaceError: DOM Exception 14 17 PASS: document.body.matches('div bbb|pre') throws: Error: NamespaceError: DOM Exception 1418 14 PASS: document.body.webkitMatchesSelector('div bbb|pre') throws: Error: NamespaceError: DOM Exception 14 19 15 PASS: document.querySelector('div *|pre') did not throw 20 16 PASS: document.querySelectorAll('div *|pre') did not throw 21 PASS: document.body.matches('div *|pre') did not throw22 17 PASS: document.body.webkitMatchesSelector('div *|pre') did not throw 23 18 PASS: document.querySelector('div |pre') did not throw 24 19 PASS: document.querySelectorAll('div |pre') did not throw 25 PASS: document.body.matches('div |pre') did not throw26 20 PASS: document.body.webkitMatchesSelector('div |pre') did not throw 27 21 PASS: document.querySelector('[bbb|name=value]') throws: Error: NamespaceError: DOM Exception 14 28 22 PASS: document.querySelectorAll('[bbb|name=value]') throws: Error: NamespaceError: DOM Exception 14 29 PASS: document.body.matches('[bbb|name=value]') throws: Error: NamespaceError: DOM Exception 1430 23 PASS: document.body.webkitMatchesSelector('[bbb|name=value]') throws: Error: NamespaceError: DOM Exception 14 31 24 PASS: document.querySelector('[*|name=value]') did not throw 32 25 PASS: document.querySelectorAll('[*|name=value]') did not throw 33 PASS: document.body.matches('[*|name=value]') did not throw34 26 PASS: document.body.webkitMatchesSelector('[*|name=value]') did not throw 35 27 PASS: document.querySelector('[|name=value]') did not throw 36 28 PASS: document.querySelectorAll('[|name=value]') did not throw 37 PASS: document.body.matches('[|name=value]') did not throw38 29 PASS: document.body.webkitMatchesSelector('[|name=value]') did not throw 39 30 PASS: document.querySelector(':-webkit-any(bbb|pre)') throws: Error: NamespaceError: DOM Exception 14 40 31 PASS: document.querySelector('div [bbb|name=value]') throws: Error: NamespaceError: DOM Exception 14 41 32 PASS: document.querySelectorAll('div [bbb|name=value]') throws: Error: NamespaceError: DOM Exception 14 42 PASS: document.body.matches('div [bbb|name=value]') throws: Error: NamespaceError: DOM Exception 1443 33 PASS: document.body.webkitMatchesSelector('div [bbb|name=value]') throws: Error: NamespaceError: DOM Exception 14 44 34 PASS: document.querySelector('div [*|name=value]') did not throw 45 35 PASS: document.querySelectorAll('div [*|name=value]') did not throw 46 PASS: document.body.matches('div [*|name=value]') did not throw47 36 PASS: document.body.webkitMatchesSelector('div [*|name=value]') did not throw 48 37 PASS: document.querySelector('div [|name=value]') did not throw 49 38 PASS: document.querySelectorAll('div [|name=value]') did not throw 50 PASS: document.body.matches('div [|name=value]') did not throw51 39 PASS: document.body.webkitMatchesSelector('div [|name=value]') did not throw 52 40 -
trunk/LayoutTests/fast/dom/SelectorAPI/not-supported-namespace-in-selector.html
r167584 r167588 34 34 shouldThrow("document.querySelector('bbb|pre')"); 35 35 shouldThrow("document.querySelectorAll('bbb|pre')"); 36 shouldThrow("document.body.matches('bbb|pre')");37 36 shouldThrow("document.body.webkitMatchesSelector('bbb|pre')"); 38 37 shouldNotThrow("document.querySelector('*|pre')"); 39 38 shouldNotThrow("document.querySelectorAll('*|pre')"); 40 shouldNotThrow("document.body.matches('*|pre')");41 39 shouldNotThrow("document.body.webkitMatchesSelector('*|pre')"); 42 40 shouldNotThrow("document.querySelector('|pre')"); 43 41 shouldNotThrow("document.querySelectorAll('|pre')"); 44 shouldNotThrow("document.body.matches('|pre')");45 42 shouldNotThrow("document.body.webkitMatchesSelector('|pre')"); 46 43 47 44 shouldThrow("document.querySelector('div bbb|pre')"); 48 45 shouldThrow("document.querySelectorAll('div bbb|pre')"); 49 shouldThrow("document.body.matches('div bbb|pre')");50 46 shouldThrow("document.body.webkitMatchesSelector('div bbb|pre')"); 51 47 shouldNotThrow("document.querySelector('div *|pre')"); 52 48 shouldNotThrow("document.querySelectorAll('div *|pre')"); 53 shouldNotThrow("document.body.matches('div *|pre')");54 49 shouldNotThrow("document.body.webkitMatchesSelector('div *|pre')"); 55 50 shouldNotThrow("document.querySelector('div |pre')"); 56 51 shouldNotThrow("document.querySelectorAll('div |pre')"); 57 shouldNotThrow("document.body.matches('div |pre')");58 52 shouldNotThrow("document.body.webkitMatchesSelector('div |pre')"); 59 53 60 54 shouldThrow("document.querySelector('[bbb|name=value]')"); 61 55 shouldThrow("document.querySelectorAll('[bbb|name=value]')"); 62 shouldThrow("document.body.matches('[bbb|name=value]')");63 56 shouldThrow("document.body.webkitMatchesSelector('[bbb|name=value]')"); 64 57 shouldNotThrow("document.querySelector('[*|name=value]')"); 65 58 shouldNotThrow("document.querySelectorAll('[*|name=value]')"); 66 shouldNotThrow("document.body.matches('[*|name=value]')");67 59 shouldNotThrow("document.body.webkitMatchesSelector('[*|name=value]')"); 68 60 shouldNotThrow("document.querySelector('[|name=value]')"); 69 61 shouldNotThrow("document.querySelectorAll('[|name=value]')"); 70 shouldNotThrow("document.body.matches('[|name=value]')");71 62 shouldNotThrow("document.body.webkitMatchesSelector('[|name=value]')"); 72 63 … … 75 66 shouldThrow("document.querySelector('div [bbb|name=value]')"); 76 67 shouldThrow("document.querySelectorAll('div [bbb|name=value]')"); 77 shouldThrow("document.body.matches('div [bbb|name=value]')");78 68 shouldThrow("document.body.webkitMatchesSelector('div [bbb|name=value]')"); 79 69 shouldNotThrow("document.querySelector('div [*|name=value]')"); 80 70 shouldNotThrow("document.querySelectorAll('div [*|name=value]')"); 81 shouldNotThrow("document.body.matches('div [*|name=value]')");82 71 shouldNotThrow("document.body.webkitMatchesSelector('div [*|name=value]')"); 83 72 shouldNotThrow("document.querySelector('div [|name=value]')"); 84 73 shouldNotThrow("document.querySelectorAll('div [|name=value]')"); 85 shouldNotThrow("document.body.matches('div [|name=value]')");86 74 shouldNotThrow("document.body.webkitMatchesSelector('div [|name=value]')"); 87 75 } -
trunk/LayoutTests/fast/dom/SelectorAPI/script-tests/detached-element.js
r167584 r167588 20 20 shouldBe("noChild.querySelectorAll('div').length", "0"); 21 21 22 shouldBeTrue("correctNode.matches('div')");23 shouldBeTrue("correctNode.matches('#testId')");24 22 shouldBeTrue("correctNode.webkitMatchesSelector('div')"); 25 23 shouldBeTrue("correctNode.webkitMatchesSelector('#testId')"); -
trunk/LayoutTests/fast/dom/SelectorAPI/script-tests/undefined-null-stringify.js
r167584 r167588 18 18 shouldBe("document.querySelectorAll(undefined).item(0)", "undefinedNode"); 19 19 20 shouldBeTrue("nullNode.matches(null)");21 shouldBeTrue("undefinedNode.matches(undefined)");22 20 shouldBeTrue("nullNode.webkitMatchesSelector(null)"); 23 21 shouldBeTrue("undefinedNode.webkitMatchesSelector(undefined)"); -
trunk/LayoutTests/fast/dom/SelectorAPI/script-tests/viewless-document.js
r167584 r167588 21 21 shouldBe("testDoc.querySelectorAll('p span').length", "1"); 22 22 23 shouldBeTrue("p1.matches('p')");24 shouldBeTrue("s1.matches('p span')");25 shouldBeTrue("s2.matches('#s2')");26 shouldBeTrue("d1.matches('.d1')");27 23 shouldBeTrue("p1.webkitMatchesSelector('p')"); 28 24 shouldBeTrue("s1.webkitMatchesSelector('p span')"); -
trunk/LayoutTests/fast/dom/SelectorAPI/undefined-null-stringify-expected.txt
r167584 r167588 10 10 PASS document.querySelectorAll(undefined).length is 1 11 11 PASS document.querySelectorAll(undefined).item(0) is undefinedNode 12 PASS nullNode.matches(null) is true13 PASS undefinedNode.matches(undefined) is true14 12 PASS nullNode.webkitMatchesSelector(null) is true 15 13 PASS undefinedNode.webkitMatchesSelector(undefined) is true -
trunk/LayoutTests/fast/dom/SelectorAPI/viewless-document-expected.txt
r167584 r167588 9 9 PASS testDoc.querySelector('.d1') is d1 10 10 PASS testDoc.querySelectorAll('p span').length is 1 11 PASS p1.matches('p') is true12 PASS s1.matches('p span') is true13 PASS s2.matches('#s2') is true14 PASS d1.matches('.d1') is true15 11 PASS p1.webkitMatchesSelector('p') is true 16 12 PASS s1.webkitMatchesSelector('p span') is true -
trunk/LayoutTests/fast/forms/radio/radio-live-validation-style-expected.txt
r167584 r167588 7 7 PASS backgroundOf($("radio1")) is validColor 8 8 PASS parent.removeChild($("radio2")); backgroundOf($("radio1")) is invalidColor 9 PASS $("radio1").remove(); radio2.matches(":valid") is false 10 PASS radio2.remove(); radio2.matches(":valid") is true 11 FAIL $("radio1").remove(); radio2.webkitMatchesSelector(":valid") should be false. Threw exception TypeError: null is not an object (evaluating '$("radio1").remove') 9 PASS $("radio1").remove(); radio2.webkitMatchesSelector(":valid") is false 12 10 PASS radio2.remove(); radio2.webkitMatchesSelector(":valid") is true 13 11 -
trunk/LayoutTests/fast/forms/radio/radio-live-validation-style.html
r167584 r167588 35 35 '<input type=radio name=group1 required id=radio3>'; 36 36 var radio2 = $('radio2'); 37 shouldBeFalse('$("radio1").remove(); radio2.matches(":valid")');38 shouldBeTrue('radio2.remove(); radio2.matches(":valid")');39 37 shouldBeFalse('$("radio1").remove(); radio2.webkitMatchesSelector(":valid")'); 40 38 shouldBeTrue('radio2.remove(); radio2.webkitMatchesSelector(":valid")'); -
trunk/LayoutTests/fast/harness/results.html
r167584 r167588 274 274 function matchesSelector(node, selector) 275 275 { 276 if (node.matches)277 return node.matches(selector);278 279 276 if (node.webkitMatchesSelector) 280 277 return node.webkitMatchesSelector(selector); -
trunk/Source/WebCore/ChangeLog
r167585 r167588 1 2014-04-21 Commit Queue <commit-queue@webkit.org> 2 3 Unreviewed, rolling out r167584. 4 https://bugs.webkit.org/show_bug.cgi?id=131929 5 6 Broke Objective-C bindings test (Requested by ap on #webkit). 7 8 Reverted changeset: 9 10 "Add Element.matches, the standard name for 11 webkitMatchesSelector" 12 https://bugs.webkit.org/show_bug.cgi?id=131922 13 http://trac.webkit.org/changeset/167584 14 1 15 2014-04-20 Benjamin Poulain <benjamin@webkit.org> 2 16 -
trunk/Source/WebCore/bindings/scripts/CodeGeneratorObjC.pm
r167584 r167588 1560 1560 $content = "${implementedBy}::" . $codeGenerator->WK_lcfirst($functionName) . "(" . join(", ", @parameterNames) . ")"; 1561 1561 } else { 1562 my $functionImplementationName = $function->signature->extendedAttributes->{"ImplementedAs"} || $codeGenerator->WK_lcfirst($functionName); 1563 $content = "$caller->" . $functionImplementationName . "(" . join(", ", @parameterNames) . ")"; 1562 $content = "$caller->" . $codeGenerator->WK_lcfirst($functionName) . "(" . join(", ", @parameterNames) . ")"; 1564 1563 } 1565 1564 -
trunk/Source/WebCore/dom/Element.cpp
r167584 r167588 2297 2297 } 2298 2298 2299 bool Element:: matches(const String& selector, ExceptionCode& ec)2299 bool Element::webkitMatchesSelector(const String& selector, ExceptionCode& ec) 2300 2300 { 2301 2301 SelectorQuery* selectorQuery = document().selectorQueryForString(selector, ec); -
trunk/Source/WebCore/dom/Element.h
r167584 r167588 457 457 virtual bool matchesReadOnlyPseudoClass() const; 458 458 virtual bool matchesReadWritePseudoClass() const; 459 bool matches(const String& selectors, ExceptionCode&);459 bool webkitMatchesSelector(const String& selectors, ExceptionCode&); 460 460 virtual bool shouldAppearIndeterminate() const; 461 461 -
trunk/Source/WebCore/dom/Element.idl
r167584 r167588 108 108 [RaisesException] NodeList querySelectorAll(DOMString selectors); 109 109 110 [RaisesException] boolean matches([Default=Undefined] optional DOMString selectors);111 [ ImplementedAs=matches,RaisesException] boolean webkitMatchesSelector([Default=Undefined] optional DOMString selectors);110 // WebKit extension, pending specification. 111 [RaisesException] boolean webkitMatchesSelector([Default=Undefined] optional DOMString selectors); 112 112 113 113 // ElementTraversal API -
trunk/Source/WebCore/inspector/InspectorCSSAgent.cpp
r167584 r167588 1159 1159 long index = 0; 1160 1160 for (const CSSSelector* selector = selectorList.first(); selector; selector = CSSSelectorList::next(selector)) { 1161 bool matched = element-> matches(selector->selectorText(), IGNORE_EXCEPTION);1161 bool matched = element->webkitMatchesSelector(selector->selectorText(), IGNORE_EXCEPTION); 1162 1162 if (matched) 1163 1163 matchingSelectors->addItem(index);
Note:
See TracChangeset
for help on using the changeset viewer.