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

Side by Side Diff: LayoutTests/compositing/gestures/gesture-tapHighlight-imagemap.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="../../fast/js/resources/js-test-pre.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body onload="runTest();"> 6 <body onload="runTest();">
7 <div style="-webkit-transform: translateZ(0);"> 7 <div style="-webkit-transform: translateZ(0);">
8 <div id="target" style="width: 320px; height: 240px; cursor: pointer; -webki t-tap-highlight-color: rgb(0, 255, 0)"> 8 <div id="target" style="width: 320px; height: 240px; cursor: pointer; -webki t-tap-highlight-color: rgb(0, 255, 0)">
9 <map name="map"> 9 <map name="map">
10 <area shape="rect" coords="10,10,200,200" alt="Test" href="#"> 10 <area shape="rect" coords="10,10,200,200" alt="Test" href="#">
11 </map> 11 </map>
12 <img src="resources/dice.png" usemap="#map"> 12 <img src="resources/dice.png" usemap="#map">
13 </div> 13 </div>
14 </div> 14 </div>
(...skipping 12 matching lines...) Expand all
27 window.setTimeout(function() { window.testRunner.notifyDone(); }, 0); 27 window.setTimeout(function() { window.testRunner.notifyDone(); }, 0);
28 } else { 28 } else {
29 debug("This test requires DumpRenderTree."); 29 debug("This test requires DumpRenderTree.");
30 debug("This test is successful if we don't cause a crash. TODO: Make lin k highlight work on image maps"); 30 debug("This test is successful if we don't cause a crash. TODO: Make lin k highlight work on image maps");
31 } 31 }
32 } 32 }
33 </script> 33 </script>
34 </script> 34 </script>
35 </body> 35 </body>
36 </html> 36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698