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

Unified Diff: Source/WebKit/chromium/tests/data/find_in_page_frame.html

Issue 12092069: Merge 141252 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1364/
Patch Set: Created 7 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
« no previous file with comments | « Source/WebKit/chromium/tests/data/find.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebKit/chromium/tests/data/find_in_page_frame.html
===================================================================
--- Source/WebKit/chromium/tests/data/find_in_page_frame.html (revision 141278)
+++ Source/WebKit/chromium/tests/data/find_in_page_frame.html (working copy)
@@ -25,17 +25,34 @@
height: 100px;
position: fixed;
}
+div.relative-overflow {
+ position: relative;
+ overflow: hidden;
+ height: 100px;
+}
+div.margin-overflow {
+ overflow: hidden;
+ margin-top:20px;
+ height: 50px;
+}
+div.absolute {
+ position: absolute;
+ top: 0px;
+ height: 20px;
+ width: 80px;
+ background-color: "green";
+}
</style>
</head>
<body>
This is a test.
-</br></br>
-</br></br>
-</br></br>
+<br>
+<br>
+<br>
Foo bar.
-</br></br>
-</br></br>
-</br></br>
+<br>
+<br>
+<br>
result 02
<div class="transform">
result 03
@@ -48,13 +65,13 @@
<div class="scroll">
result 07
Foo bar.
-</br></br>
-</br></br>
-</br></br>
+<br>
+<br>
+<br>
result 08
</div>
result 09
-</br></br>
+<br>
result 10
<table border="1" cellpadding="10" cellspacing="10">
<tr>
@@ -71,5 +88,22 @@
</tr>
</table>
result 15
+<div class="transform">
+<div style="height:0px">
+ <div style="float:left;">
+ result 16
+ </div>
+</div>
+</div>
+<div class="relative-overflow">
+ <div class="margin-overflow">
+ result 17
+ <div class="absolute">result 18</div>
+ </div>
+</div>
+<!-- Tests that will not yield matches should go below this line. -->
+<select>
+<option>result 19</option>
+</select>
</body>
</html>
« no previous file with comments | « Source/WebKit/chromium/tests/data/find.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698