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

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

Issue 74133005: Remove several uses of toWebCoreStringWithNullCheck(v8::Handle<v8::Value>) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../../resources/js-test.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 var badString = { toString: function() { throw "Exception in toString()"; } };
20 shouldThrow("document.body.style.margin = badString", "'Exception in toString()' ");
21 shouldBeEqualToString("document.body.style.margin", "2px"); // Should not reset the previous value.
22
19 </script> 23 </script>
20 </body> 24 </body>
21 </html> 25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698