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

Unified Diff: LayoutTests/fast/dom/Element/resources/display-none-body-strict.html

Issue 51553002: Fix body.scrollTop/Left for scrollable <body> tags (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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: LayoutTests/fast/dom/Element/resources/display-none-body-strict.html
diff --git a/LayoutTests/fast/dom/Element/resources/display-none-body-strict.html b/LayoutTests/fast/dom/Element/resources/display-none-body-strict.html
new file mode 100644
index 0000000000000000000000000000000000000000..7ee0dc3dc905eb761ebb6d75513b9e5e0dc69222
--- /dev/null
+++ b/LayoutTests/fast/dom/Element/resources/display-none-body-strict.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<html style=overflow:scroll>
+<head>
+ <style>
+ head { display:block; width:4000px; height:5000px; border:dotted }
+ </style>
+ <script>
+ function scroll() {
+ document.body.scrollTop = 500;
+ document.body.scrollLeft = 3000;
+ parent.verifyTest()
+ }
+ </script>
+</head>
+<body style=display:none onload="scroll()">
+</html>

Powered by Google App Engine
This is Rietveld 408576698