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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/CSSStyleDeclaration/script-tests/css-properties-case-sensitive.js

Issue 2667393002: Stop using script-tests in fast/dom/. (Closed)
Patch Set: . Created 3 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/script-tests/css-properties-case-sensitive.js
diff --git a/third_party/WebKit/LayoutTests/fast/dom/CSSStyleDeclaration/script-tests/css-properties-case-sensitive.js b/third_party/WebKit/LayoutTests/fast/dom/CSSStyleDeclaration/script-tests/css-properties-case-sensitive.js
deleted file mode 100644
index 9c24193fa96f5734cfd1f656875c611f2fe79da6..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/CSSStyleDeclaration/script-tests/css-properties-case-sensitive.js
+++ /dev/null
@@ -1,21 +0,0 @@
-description(
-'This test checks that access to the CSS float property via JavaScript properties on DOM elements is case sensitive.'
-);
-
-var element = document.createElement('a');
-element.style.float = 'left';
-
-debug('normal cases');
-debug('');
-
-shouldBe("element.style.float", "'left'");
-shouldBeUndefined("element.style.Float");
-
-debug('');
-debug('"css" prefix');
-debug('');
-
-shouldBe("element.style.cssFloat", "'left'");
-shouldBeUndefined("element.style.CssFloat");
-shouldBeUndefined("element.style.Cssfloat");
-shouldBeUndefined("element.style.cssfloat");

Powered by Google App Engine
This is Rietveld 408576698