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

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

Issue 43223002: SVGTests should not leave detached elements in the tree (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Always reattach Created 7 years, 1 month 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-dom-requiredFeatures.js 1 // [Name] SVGPathElement-dom-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 shouldHaveBBox("pathElement", "200", "200");
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.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/fea ture#BogusFeature"); 15 pathElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/fea ture#BogusFeature");
16 shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, nu ll).display", ""); 16 shouldHaveBBox("pathElement", "0", "0");
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.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/fea ture#Shape"); 18 pathElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/fea ture#Shape");
19 shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, nu ll).display", "inline"); 19 shouldHaveBBox("pathElement", "200", "200");
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.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/fea ture#Gradient"); 21 pathElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/fea ture#Gradient");
22 shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, nu ll).display", "inline"); 22 shouldHaveBBox("pathElement", "200", "200");
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.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/fea ture#BogusFeature"); 24 pathElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/fea ture#BogusFeature");
25 shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, nu ll).display", ""); 25 shouldHaveBBox("pathElement", "0", "0");
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