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

Unified Diff: LayoutTests/fast/regions/hover-in-second-region-expected.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/hover-in-second-region-expected.html
diff --git a/LayoutTests/fast/regions/hover-in-second-region-expected.html b/LayoutTests/fast/regions/hover-in-second-region-expected.html
deleted file mode 100644
index 67ba15f09de59bcc5681e696a8deeb157f0182d3..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/hover-in-second-region-expected.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>hover effect on a link in the 2nd region</title>
- <style>
- .content {
- font-size: 20px;
- font-family: Verdana;
- }
- .content a:hover {
- color:Green;
- }
- #region {
- width: 100px;
- height: 100px;
- background-color: rgb(241, 241, 241);
- border: solid 1px #888;
- margin: 10px;
- }
- </style>
- <script>
- function myOnLoad() {
- if(!window.testRunner)
- return;
-
- var element = document.querySelector('.content a');
- var box = element.getBoundingClientRect();
- var X = (box.right + box.left) / 2;
- var Y = (box.top + box.bottom) / 2;
-
- eventSender.mouseMoveTo(X, Y);
- }
- </script>
- </head>
- <body onload="myOnLoad();">
- <div id="region"><div class="content">1xxxxx<br>2xxxxx<br>3xxxxx<br>4xxxxx</div></div>
- <div id="region"><div class="content">5xxxxx<br>6xxxxx<br><a href="#">7xx</a>xxx<br>8xxxxx</div></div>
- <div id="region"><div class="content">9xxxxx<br>10xxxxx<br>11xxxxx</div></div>
- <div>hover effect on a link in the 2nd region</div>
- </body>
-</html>
« no previous file with comments | « LayoutTests/fast/regions/hover-in-second-region.html ('k') | LayoutTests/fast/regions/hover-on-child-in-region.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698