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

Side by Side Diff: LayoutTests/fast/dom/shadow/create-content-element.html

Issue 898783003: Move rendering/RenderLayer* to layout/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 /* relative positioning ensures underlying RenderLayer */ 5 /* relative positioning ensures underlying Layer */
6 .container { 6 .container {
7 position: relative; 7 position: relative;
8 } 8 }
9 </style> 9 </style>
10 <script> 10 <script>
11 function log(message) 11 function log(message)
12 { 12 {
13 document.getElementById("console").innerHTML += (message + "\n"); 13 document.getElementById("console").innerHTML += (message + "\n");
14 } 14 }
15 15
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 </script> 61 </script>
62 </head> 62 </head>
63 <body onload="test()"> 63 <body onload="test()">
64 <div id="test"> 64 <div id="test">
65 <div class="container" id="targetContainer"><div id="target"></div></div> 65 <div class="container" id="targetContainer"><div id="target"></div></div>
66 <div class="container" id="refContainer"><div><div><span>Hello,</span><span>cont ent</span><span>World.</span></div></div></div> 66 <div class="container" id="refContainer"><div><div><span>Hello,</span><span>cont ent</span><span>World.</span></div></div></div>
67 </div> 67 </div>
68 <pre id="console"></pre> 68 <pre id="console"></pre>
69 </body> 69 </body>
70 </html> 70 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698