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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/Window/replaceable.html

Issue 2506393004: binding: Makes non-cross-origin-accessible attrs be accessor props. (Closed)
Patch Set: Synced. Created 4 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: third_party/WebKit/LayoutTests/fast/dom/Window/replaceable.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/Window/replaceable.html b/third_party/WebKit/LayoutTests/fast/dom/Window/replaceable.html
index d3a18ed6ee81e545e2d86b8388905fa3e273b61b..c36434c496183a9e9ce38095b6b986a32717c363 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/Window/replaceable.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/Window/replaceable.html
@@ -4,7 +4,8 @@
description('Tests that Replaceable attributes are writable');
-shouldBeTrue('Object.getOwnPropertyDescriptor(window, "innerHeight").writable');
+shouldBeType('Object.getOwnPropertyDescriptor(window, "innerHeight").set',
+ 'Function');
window.innerHeight = 42;
shouldBe('window.innerHeight', '42');

Powered by Google App Engine
This is Rietveld 408576698