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

Side by Side Diff: LayoutTests/fast/dom/CSSStyleDeclaration/css-style-declaration-named-setter.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../js/resources/js-test-pre.js"></script> 3 <script src="../../../resources/js-test.js"></script>
4 </head> 4 </head>
5 <body style="margin: 0px"> 5 <body style="margin: 0px">
6 <script> 6 <script>
7 7
8 shouldBeEqualToString("document.body.style.margin", "0px"); 8 shouldBeEqualToString("document.body.style.margin", "0px");
9 shouldBe("document.body.style.margin = 1", "1"); 9 shouldBe("document.body.style.margin = 1", "1");
10 shouldBeEqualToString("document.body.style.margin", "1px"); 10 shouldBeEqualToString("document.body.style.margin", "1px");
11 11
12 shouldBe("document.body.style.__proto__.margin = 777", "777"); 12 shouldBe("document.body.style.__proto__.margin = 777", "777");
13 shouldBe("document.body.style.__proto__.margin", "777"); 13 shouldBe("document.body.style.__proto__.margin", "777");
14 14
15 shouldBeEqualToString("document.body.style.margin", "1px"); 15 shouldBeEqualToString("document.body.style.margin", "1px");
16 shouldBe("document.body.style.margin = 2", "2"); 16 shouldBe("document.body.style.margin = 2", "2");
17 shouldBeEqualToString("document.body.style.margin", "2px"); 17 shouldBeEqualToString("document.body.style.margin", "2px");
18 18
19 </script> 19 </script>
20 </body> 20 </body>
21 </html> 21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698