Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Side by Side Diff: LayoutTests/svg/dynamic-updates/script-tests/SVGPathElement-svgdom-requiredFeatures.js

Issue 20738002: Make DOMImplementation::hasFeature() behave according to specification (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Without the binaries so that the try bots are happy Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // [Name] SVGPathElement-svgdom-requiredFeatures.js 1 // [Name] SVGPathElement-svgdom-requiredFeatures.js
2 // [Expected rendering result] a series of PASS messages 2 // [Expected rendering result] a series of PASS messages
3 3
4 createSVGTestCase(); 4 createSVGTestCase();
5 5
6 var pathElement = createSVGElement("path"); 6 var pathElement = createSVGElement("path");
7 pathElement.setAttribute("d", "M0 0 L 200 0 L 200 200 L 0 200"); 7 pathElement.setAttribute("d", "M0 0 L 200 0 L 200 200 L 0 200");
8 8
9 rootSVGElement.appendChild(pathElement); 9 rootSVGElement.appendChild(pathElement);
10 10
11 function repaintTest() { 11 function repaintTest() {
12 debug("Check that SVGPathElement is initially displayed"); 12 debug("Check that SVGPathElement is initially displayed");
13 shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, nu ll).display", "inline"); 13 shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, nu ll).display", "inline");
14 debug("Check that setting requiredFeatures to something invalid makes it not render"); 14 debug("Check that setting requiredFeatures to something invalid makes it not render");
15 pathElement.requiredFeatures.appendItem("foo"); 15 pathElement.requiredFeatures.appendItem("http://www.w3.org/TR/SVG11/feature# BogusFeature");
16 shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, nu ll).display", ""); 16 shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, nu ll).display", "");
17 debug("Check that setting requiredFeatures to something valid makes it rende r again"); 17 debug("Check that setting requiredFeatures to something valid makes it rende r again");
18 pathElement.requiredFeatures.replaceItem("http://www.w3.org/TR/SVG11/feature #Shape", 0); 18 pathElement.requiredFeatures.replaceItem("http://www.w3.org/TR/SVG11/feature #Shape", 0);
19 shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, nu ll).display", "inline"); 19 shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, nu ll).display", "inline");
20 debug("Check that adding something valid to requiredFeatures keeps rendering the element"); 20 debug("Check that adding something valid to requiredFeatures keeps rendering the element");
21 pathElement.requiredFeatures.appendItem("http://www.w3.org/TR/SVG11/feature# Gradient"); 21 pathElement.requiredFeatures.appendItem("http://www.w3.org/TR/SVG11/feature# Gradient");
22 shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, nu ll).display", "inline"); 22 shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, nu ll).display", "inline");
23 debug("Check that adding something invalid to requiredFeatures makes it not render"); 23 debug("Check that adding something invalid to requiredFeatures makes it not render");
24 pathElement.requiredFeatures.appendItem("foo"); 24 pathElement.requiredFeatures.appendItem("http://www.w3.org/TR/SVG11/feature# BogusFeature");
25 shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, nu ll).display", ""); 25 shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, nu ll).display", "");
26 26
27 completeTest(); 27 completeTest();
28 } 28 }
29 29
30 var successfullyParsed = true; 30 var successfullyParsed = true;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698