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

Side by Side Diff: LayoutTests/fast/events/touch/touch-rect-crash-on-unpromote-layer.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 <script src="../../js/resources/js-test-pre.js"></script> 4 <script src="../../../resources/js-test.js"></script>
5 <style> 5 <style>
6 #layer { 6 #layer {
7 position: relative; 7 position: relative;
8 left: 10px; 8 left: 10px;
9 } 9 }
10 .composited { 10 .composited {
11 -webkit-transform: translate3d(0, 0, 0); 11 -webkit-transform: translate3d(0, 0, 0);
12 } 12 }
13 </style> 13 </style>
14 </head> 14 </head>
(...skipping 29 matching lines...) Expand all
44 // Verify we now have a hit rect on the document. 44 // Verify we now have a hit rect on the document.
45 // (layout and compositing update are done by touchEventTargetLayerRects().) 45 // (layout and compositing update are done by touchEventTargetLayerRects().)
46 if (window.internals) { 46 if (window.internals) {
47 rects = window.internals.touchEventTargetLayerRects(document); 47 rects = window.internals.touchEventTargetLayerRects(document);
48 shouldBe("rects.length", "1"); 48 shouldBe("rects.length", "1");
49 shouldBeEqualToString("rects[0].layerRootNode.nodeName", "#document"); 49 shouldBeEqualToString("rects[0].layerRootNode.nodeName", "#document");
50 } 50 }
51 </script> 51 </script>
52 </body> 52 </body>
53 </html> 53 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/events/touch/touch-inside-iframe-scrolled.html ('k') | LayoutTests/fast/events/touch/touch-slider.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698