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

Side by Side Diff: LayoutTests/svg/dynamic-updates/script-tests/SVGCircleElement-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, 4 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] SVGCircleElement-svgdom-requiredFeatures.js 1 // [Name] SVGCircleElement-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 circleElement = createSVGElement("circle"); 6 var circleElement = createSVGElement("circle");
7 circleElement.setAttribute("r", "200"); 7 circleElement.setAttribute("r", "200");
8 8
9 rootSVGElement.appendChild(circleElement); 9 rootSVGElement.appendChild(circleElement);
10 10
11 function repaintTest() { 11 function repaintTest() {
12 debug("Check that SVGCircleElement is initially displayed"); 12 debug("Check that SVGCircleElement is initially displayed");
13 shouldBeEqualToString("document.defaultView.getComputedStyle(circleElement, null).display", "inline"); 13 shouldBeEqualToString("document.defaultView.getComputedStyle(circleElement, null).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 circleElement.requiredFeatures.appendItem("foo"); 15 circleElement.requiredFeatures.appendItem("http://www.w3.org/TR/SVG11/featur e#BogusFeature");
16 shouldBeEqualToString("document.defaultView.getComputedStyle(circleElement, null).display", ""); 16 shouldBeEqualToString("document.defaultView.getComputedStyle(circleElement, null).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 circleElement.requiredFeatures.replaceItem("http://www.w3.org/TR/SVG11/featu re#Shape", 0); 18 circleElement.requiredFeatures.replaceItem("http://www.w3.org/TR/SVG11/featu re#Shape", 0);
19 shouldBeEqualToString("document.defaultView.getComputedStyle(circleElement, null).display", "inline"); 19 shouldBeEqualToString("document.defaultView.getComputedStyle(circleElement, null).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 circleElement.requiredFeatures.appendItem("http://www.w3.org/TR/SVG11/featur e#Gradient"); 21 circleElement.requiredFeatures.appendItem("http://www.w3.org/TR/SVG11/featur e#Gradient");
22 shouldBeEqualToString("document.defaultView.getComputedStyle(circleElement, null).display", "inline"); 22 shouldBeEqualToString("document.defaultView.getComputedStyle(circleElement, null).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 circleElement.requiredFeatures.appendItem("foo"); 24 circleElement.requiredFeatures.appendItem("http://www.w3.org/TR/SVG11/featur e#BogusFeature");
25 shouldBeEqualToString("document.defaultView.getComputedStyle(circleElement, null).display", ""); 25 shouldBeEqualToString("document.defaultView.getComputedStyle(circleElement, null).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