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

Side by Side Diff: LayoutTests/compositing/squashing/remove-from-grouped-mapping-on-reassignment.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 <style> 2 <style>
3 </style> 3 </style>
4 <script> 4 <script>
5 if (window.testRunner) 5 if (window.testRunner)
6 testRunner.dumpAsText(); 6 testRunner.dumpAsText();
7 7
8 var css = null; 8 var css = null;
9 9
10 function boom2() { 10 function boom2() {
(...skipping 28 matching lines...) Expand all
39 39
40 setTimeout(boom2, 0); 40 setTimeout(boom2, 0);
41 } 41 }
42 42
43 onload = function() { 43 onload = function() {
44 css = document.styleSheets[0]; 44 css = document.styleSheets[0];
45 setTimeout(boom, 0); 45 setTimeout(boom, 0);
46 } 46 }
47 </script> 47 </script>
48 <!-- 48 <!--
49 This test forces a situation where we reassign a RenderLayer's grouped mapping, 49 This test forces a situation where we reassign a Layer's grouped mapping,
50 but don't inform the old mapping of the change, and the old mapping attempts to 50 but don't inform the old mapping of the change, and the old mapping attempts to
51 use the stale pointer. 51 use the stale pointer.
52 52
53 FIXME: this test is gross and should be reduced to a minimal repro. 53 FIXME: this test is gross and should be reduced to a minimal repro.
54 --> 54 -->
55 <body>This test passes if it does not crash</body> 55 <body>This test passes if it does not crash</body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698