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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/CSSStyleDeclaration/css-style-declaration-named-getter.html

Issue 1607653002: Remove getComputedStyle(e).css* properties (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unnecessary property name prefix check Created 4 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: third_party/WebKit/LayoutTests/fast/dom/CSSStyleDeclaration/css-style-declaration-named-getter.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/CSSStyleDeclaration/css-style-declaration-named-getter.html b/third_party/WebKit/LayoutTests/fast/dom/CSSStyleDeclaration/css-style-declaration-named-getter.html
index 8f63364c7c188cb51c8420d760189ecf9e5a3d3e..3dcd293a781cd76a2276813a5c3f86fbcbea9e79 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/CSSStyleDeclaration/css-style-declaration-named-getter.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/CSSStyleDeclaration/css-style-declaration-named-getter.html
@@ -12,8 +12,8 @@ shouldBeUndefined("document.body.style['border-TopWidth']");
shouldBeUndefined("document.body.style['borderTop-width']");
shouldBeUndefined("document.body.style['borderTop-Width']");
shouldBeEqualToString("document.body.style['border-top-width']", "1px");
-shouldBeEqualToString("document.body.style['CssBorderTopWidth']", "1px");
-shouldBeEqualToString("document.body.style['cssBorderTopWidth']", "1px");
+shouldBeUndefined("document.body.style['CssBorderTopWidth']");
+shouldBeUndefined("document.body.style['cssBorderTopWidth']");
shouldBeUndefined("document.body.style['cssborderTopWidth']");
shouldBeUndefined("document.body.style['cssBorder-top-width']");
shouldBeUndefined("document.body.style['css-border-top-width']");

Powered by Google App Engine
This is Rietveld 408576698