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

Unified Diff: LayoutTests/fast/css/draggable-region-parser.html

Issue 1274643002: CSSStyleDeclaraction returns empty string (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed changes from imported/csswg-test Created 5 years, 4 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/css/draggable-region-parser.html
diff --git a/LayoutTests/fast/css/draggable-region-parser.html b/LayoutTests/fast/css/draggable-region-parser.html
index 5eefa6e3e0dd2a91cd8f70a8f1c943fdfd124abb..b477b7c597f21abd67a85f4446e89a2b0407bd6b 100644
--- a/LayoutTests/fast/css/draggable-region-parser.html
+++ b/LayoutTests/fast/css/draggable-region-parser.html
@@ -49,15 +49,15 @@ debug('');
debug('Some expected failures.');
debug('');
-shouldBe("parseDraggableRegion('')", "null");
-shouldBe("parseDraggableRegion(' ')", "null");
-shouldBe("parseDraggableRegion('x')", "null");
-shouldBe("parseDraggableRegion('x-')", "null");
-shouldBe("parseDraggableRegion('x()')", "null");
-shouldBe("parseDraggableRegion('x(a)')", "null");
-shouldBe("parseDraggableRegion('none x')", "null");
-shouldBe("parseDraggableRegion('none x()')", "null");
-shouldBe("parseDraggableRegion('none x(a)')", "null");
+shouldBeEqualToString("parseDraggableRegion('')", "");
+shouldBeEqualToString("parseDraggableRegion(' ')", "");
+shouldBeEqualToString("parseDraggableRegion('x')", "");
+shouldBeEqualToString("parseDraggableRegion('x-')", "");
+shouldBeEqualToString("parseDraggableRegion('x()')", "");
+shouldBeEqualToString("parseDraggableRegion('x(a)')", "");
+shouldBeEqualToString("parseDraggableRegion('none x')", "");
+shouldBeEqualToString("parseDraggableRegion('none x()')", "");
+shouldBeEqualToString("parseDraggableRegion('none x(a)')", "");
debug('');

Powered by Google App Engine
This is Rietveld 408576698