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

Side by Side Diff: LayoutTests/fast/events/touch/compositor-touch-hit-rects.html

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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 #transformedChild { 5 #transformedChild {
6 -webkit-transform: rotate3d(0.2, 1, 0, 35grad); 6 -webkit-transform: rotate3d(0.2, 1, 0, 35grad);
7 } 7 }
8 #absoluteChild { 8 #absoluteChild {
9 position: absolute; 9 position: absolute;
10 top: 300px; 10 top: 300px;
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 document.addEventListener('touchstart', listener, false); 114 document.addEventListener('touchstart', listener, false);
115 logRects("document"); 115 logRects("document");
116 116
117 var testContainer = document.getElementById("tests"); 117 var testContainer = document.getElementById("tests");
118 testContainer.parentNode.removeChild(testContainer); 118 testContainer.parentNode.removeChild(testContainer);
119 } 119 }
120 120
121 runTest(); 121 runTest();
122 </script> 122 </script>
123 </body> 123 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698