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

Side by Side Diff: LayoutTests/fast/events/scroll-during-zoom-change.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 <div> 1 <div>
2 Test for <i><a href="rdar://problem/6634768">rdar://problem/6634768</a> 2 Test for <i><a href="rdar://problem/6634768">rdar://problem/6634768</a>
3 Reproducible crash in RenderLayer::updateScrollCornerStyle() using full-page zoom at MobileMe Contacts</i>. 3 Reproducible crash in Layer::updateScrollCornerStyle() using full-page zoom at MobileMe Contacts</i>.
4 </div> 4 </div>
5 <div> 5 <div>
6 The test passed if it did not crash. 6 The test passed if it did not crash.
7 </div> 7 </div>
8 <div id="target" style=" 8 <div id="target" style="
9 overflow: auto; 9 overflow: auto;
10 height: 200px; 10 height: 200px;
11 width: 200px; 11 width: 200px;
12 "> 12 ">
13 <div style="height: 500px;"></div> 13 <div style="height: 500px;"></div>
(...skipping 15 matching lines...) Expand all
29 target.addEventListener("scroll", scrolled, false); 29 target.addEventListener("scroll", scrolled, false);
30 document.body.style.zoom = 2; 30 document.body.style.zoom = 2;
31 } 31 }
32 32
33 if (window.testRunner) { 33 if (window.testRunner) {
34 testRunner.dumpAsText(); 34 testRunner.dumpAsText();
35 testRunner.waitUntilDone(); 35 testRunner.waitUntilDone();
36 } 36 }
37 test(); 37 test();
38 </script> 38 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698