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

Side by Side Diff: LayoutTests/fast/frames/inline-object-inside-frameset.html

Issue 196573042: Remove display() from more layout tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: More expectations Created 6 years, 8 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 | Annotate | Revision Log
OLDNEW
1 <html><head> 1 <html><head>
2 2
3 <script> 3 <script>
4 function runTest() { 4 function runTest() {
5 var dcont = document.getElementById("dcont"); 5 var dcont = document.getElementById("dcont");
6 6
7 var e = document.createElement('frameset'); 7 var e = document.createElement('frameset');
8 var span = document.createElement('span'); 8 var span = document.createElement('span');
9 e.appendChild(span); 9 e.appendChild(span);
10
11 dcont.appendChild(e); 10 dcont.appendChild(e);
12
13 if (window.testRunner)
14 testRunner.display();
15 } 11 }
16 12
17 </script> 13 </script>
18 </head><body onload="runTest()"> 14 </head><body onload="runTest()">
19 <div>This tests that putting an inline element (such as a span) inside of an ele ment doesn't cause an assertion failure.</div> 15 <div>This tests that putting an inline element (such as a span) inside of an ele ment doesn't cause an assertion failure.</div>
20 <div id="dcont"> 16 <div id="dcont">
21 </div> 17 </div>
22 18
23 </body></html> 19 </body></html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/listbox-clip.html ('k') | LayoutTests/fast/frames/transparent-scrollbar.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698