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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/cssom-view/scrollIntoView-shadow.html

Issue 2939393002: Change ScrollIntoViewOptions::inlinePostion to inline (Closed)
Patch Set: Add a todo Created 3 years, 6 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/external/wpt/cssom-view/scrollIntoView-smooth.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/external/wpt/cssom-view/scrollIntoView-shadow.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/cssom-view/scrollIntoView-shadow.html b/third_party/WebKit/LayoutTests/external/wpt/cssom-view/scrollIntoView-shadow.html
index f272924c3584629f0fadee7dbe5063248cc70566..6d44df6e4eaa14f50ceeeb9dbb504d60ca8b54bc 100644
--- a/third_party/WebKit/LayoutTests/external/wpt/cssom-view/scrollIntoView-shadow.html
+++ b/third_party/WebKit/LayoutTests/external/wpt/cssom-view/scrollIntoView-shadow.html
@@ -26,7 +26,7 @@ test(t => {
var expected_y = shadowDiv.offsetTop;
assert_not_equals(window.scrollX, expected_x);
assert_not_equals(window.scrollY, expected_y);
- shadowDiv.scrollIntoView({block: "start", inlinePosition: "start"});
+ shadowDiv.scrollIntoView({block: "start", inline: "start"});
assert_approx_equals(window.scrollX, expected_x, 1);
assert_approx_equals(window.scrollY, expected_y, 1);
}, "scrollIntoView should behave correctly if applies to shadow dom elements");
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/external/wpt/cssom-view/scrollIntoView-smooth.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698