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

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

Issue 141693002: Don't support mixed dashed/camel-cased CSS property names (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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
« no previous file with comments | « no previous file | LayoutTests/fast/dom/CSSStyleDeclaration/css-style-declaration-named-getter-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script src="../../../resources/js-test.js"></script>
4 </head>
5 <body style="border: 1px; -webkit-box-sizing: border-box">
6 <script>
7
8 shouldBeUndefined("document.body.style['BorderTopWidth']");
9 shouldBeEqualToString("document.body.style['borderTopWidth']", "1px");
10 shouldBeUndefined("document.body.style['border-topWidth']");
11 shouldBeUndefined("document.body.style['border-TopWidth']");
12 shouldBeUndefined("document.body.style['borderTop-width']");
13 shouldBeUndefined("document.body.style['borderTop-Width']");
14 shouldBeEqualToString("document.body.style['border-top-width']", "1px");
15 shouldBeEqualToString("document.body.style['CssBorderTopWidth']", "1px");
16 shouldBeEqualToString("document.body.style['cssBorderTopWidth']", "1px");
17 shouldBeUndefined("document.body.style['cssborderTopWidth']");
18 shouldBeUndefined("document.body.style['cssBorder-top-width']");
19 shouldBeUndefined("document.body.style['css-border-top-width']");
20
21 shouldBeEqualToString("document.body.style['WebkitBoxSizing']", "border-box");
22 shouldBeEqualToString("document.body.style['webkitBoxSizing']", "border-box");
23 shouldBeUndefined("document.body.style['webkit-boxSizing']");
24 shouldBeUndefined("document.body.style['webkit-BoxSizing']");
25 shouldBeUndefined("document.body.style['webkitBox-sizing']");
26 shouldBeUndefined("document.body.style['webkitBox-Sizing']");
27 shouldBeEqualToString("document.body.style['-webkit-box-sizing']", "border-box") ;
28 shouldBeUndefined("document.body.style['cssWebkitBorderBoxSizing']");
29
30 </script>
31 </body>
32 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/dom/CSSStyleDeclaration/css-style-declaration-named-getter-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698