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

Side by Side Diff: LayoutTests/fast/replaced/replaced-last-line-layout.html

Issue 10869055: Merge 125810 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1229/
Patch Set: Created 8 years, 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/replaced/replaced-last-line-layout-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <body>
4 <div style="display: inline; position: relative;"> 4 <div style="display: inline; position: relative;">
5 <input type="text" id="one"><br> 5 <input type="text" id="one"><br>
6 <input type="text" id="two"> 6 <input type="text" id="two">
7 <div style="position: absolute"></div> 7 <div style="position: absolute"></div>
8 </div> 8 </div>
9 <script> 9 <script>
10 if (window.testRunner) 10 if (window.testRunner)
11 testRunner.waitUntilDone(); 11 testRunner.waitUntilDone();
12 12
13 function finish() { 13 function finish() {
14 one.value = "One"; 14 one.value = "One";
15 two.value = "Two"; 15 two.value = "Two";
16 if (window.testRunner) 16 if (window.testRunner)
17 testRunner.notifyDone(); 17 testRunner.notifyDone();
18 } 18 }
19 19
20 setTimeout("finish()", 0); 20 setTimeout("finish()", 0);
21 </script> 21 </script>
22 </body> 22 </body>
23 </html> 23 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/replaced/replaced-last-line-layout-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698