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

Side by Side Diff: LayoutTests/fast/dom/shadow/content-element-renderers.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 var line = document.createElement("div"); 13 var line = document.createElement("div");
14 line.textContent = message; 14 line.textContent = message;
15 document.getElementById("console").appendChild(line); 15 document.getElementById("console").appendChild(line);
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 </script> 146 </script>
147 </head> 147 </head>
148 <body onload="test()"> 148 <body onload="test()">
149 <div id="test"> 149 <div id="test">
150 <div class="container" id="targetContainer"></div> 150 <div class="container" id="targetContainer"></div>
151 <div class="container" id="referenceContainer"></div> 151 <div class="container" id="referenceContainer"></div>
152 </div> 152 </div>
153 <pre id="console" style="display: none;"></pre> 153 <pre id="console" style="display: none;"></pre>
154 </body> 154 </body>
155 </html> 155 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/shadow/content-element-move.html ('k') | LayoutTests/fast/dom/shadow/content-element-select-dynamic.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698