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

Unified Diff: LayoutTests/fast/dom/ping-attribute-dom-binding.html

Issue 59383002: Remove TreatNullAs=NullString for HTMLAreaElement (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@nullanchor
Patch Set: Created 7 years, 1 month 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/ping-attribute-dom-binding.html
diff --git a/LayoutTests/fast/dom/ping-attribute-dom-binding.html b/LayoutTests/fast/dom/ping-attribute-dom-binding.html
index 2e913482d065e3fff8ecb18d30be636622ac517c..b49b846c52d3b7b3dfff7f5bf3b00e6f5cf1086f 100644
--- a/LayoutTests/fast/dom/ping-attribute-dom-binding.html
+++ b/LayoutTests/fast/dom/ping-attribute-dom-binding.html
@@ -25,8 +25,8 @@ shouldBeEqualToString('area.ping', 'p1');
area.ping = 'p2';
shouldBeEqualToString('area.getAttribute("ping")', 'p2');
area.ping = null;
-shouldBeFalse('area.hasAttribute("ping")');
-shouldBeEqualToString('area.ping', '');
+shouldBeEqualToString('area.getAttribute("ping")', 'null');
+shouldBeEqualToString('area.ping', 'null');
</script>
</body>

Powered by Google App Engine
This is Rietveld 408576698