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

Unified Diff: LayoutTests/fast/regions/drag-scrollbars-of-content.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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/regions/drag-scrollbars-of-content.html
diff --git a/LayoutTests/fast/regions/drag-scrollbars-of-content.html b/LayoutTests/fast/regions/drag-scrollbars-of-content.html
deleted file mode 100644
index 669c566346c31da2646c32445a39bfa81c3cc13f..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/drag-scrollbars-of-content.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>drag the scrollbars of content flowed in regions</title>
- <style>
- .content {
- width: 100px;
- height: 100px;
- overflow-y: scroll;
- overflow-x: none;
- font-size: 20px;
- line-height: 1em;
- padding: 0.5em;
- border: solid 1px #888;
- -webkit-flow-into: f;
- }
- #region {
- width: 200px;
- height: 200px;
- margin: 20px;
- background-color: rgb(241, 241, 241);
- -webkit-flow-from: f;
- }
- </style>
- <script>
- function myOnLoad() {
- if(!window.testRunner)
- return;
- var scrollable = document.querySelector('.content');
- var scrollBox = scrollable.getBoundingClientRect();
- var X = scrollBox.right - 3;
- var Y = scrollBox.bottom - 3;
-
- eventSender.mouseMoveTo(X, Y);
- eventSender.mouseDown();
- eventSender.mouseUp();
- }
- </script>
- </head>
- <body onload="myOnLoad();">
- <div class="content">1xxxxx<br>2xxxxx<br>3xxxxx<br>4xxxxx<br>5xxxxx<br>6xxxxx<br>7xxxxx<br>8xxxxx</div>
- <div id="region"></div>
- <div>You should be able to drag the scrollbars</div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698