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

Unified Diff: LayoutTests/fast/dom/CSSStyleDeclaration/css-style-declaration-named-getter-expected.txt

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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/dom/CSSStyleDeclaration/css-style-declaration-named-getter-expected.txt
diff --git a/LayoutTests/fast/dom/CSSStyleDeclaration/css-style-declaration-named-getter-expected.txt b/LayoutTests/fast/dom/CSSStyleDeclaration/css-style-declaration-named-getter-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..16c2f689f9c840821502d11be98bd9ea9d630b50
--- /dev/null
+++ b/LayoutTests/fast/dom/CSSStyleDeclaration/css-style-declaration-named-getter-expected.txt
@@ -0,0 +1,24 @@
+PASS document.body.style['BorderTopWidth'] is undefined.
+PASS document.body.style['borderTopWidth'] is "1px"
+PASS document.body.style['border-topWidth'] is undefined.
+PASS document.body.style['border-TopWidth'] is undefined.
+PASS document.body.style['borderTop-width'] is undefined.
+PASS document.body.style['borderTop-Width'] is undefined.
+PASS document.body.style['border-top-width'] is "1px"
+PASS document.body.style['CssBorderTopWidth'] is "1px"
+PASS document.body.style['cssBorderTopWidth'] is "1px"
+PASS document.body.style['cssborderTopWidth'] is undefined.
+PASS document.body.style['cssBorder-top-width'] is undefined.
+PASS document.body.style['css-border-top-width'] is undefined.
+PASS document.body.style['WebkitBoxSizing'] is "border-box"
+PASS document.body.style['webkitBoxSizing'] is "border-box"
+PASS document.body.style['webkit-boxSizing'] is undefined.
+PASS document.body.style['webkit-BoxSizing'] is undefined.
+PASS document.body.style['webkitBox-sizing'] is undefined.
+PASS document.body.style['webkitBox-Sizing'] is undefined.
+PASS document.body.style['-webkit-box-sizing'] is "border-box"
+PASS document.body.style['cssWebkitBorderBoxSizing'] is undefined.
+PASS successfullyParsed is true
+
+TEST COMPLETE
+

Powered by Google App Engine
This is Rietveld 408576698