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

Side by Side Diff: LayoutTests/fast/images/imagemap-nested-area.html

Issue 481753002: Use Shadow DOM to display fallback content for images (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated Created 6 years 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 <html> 1 <html>
2 <head> 2 <head>
3 <script> 3 <script>
4 function pressTabKey() 4 function pressTabKey()
5 { 5 {
6 if (window.eventSender) 6 if (window.eventSender)
7 eventSender.keyDown("\t"); 7 eventSender.keyDown("\t");
8 } 8 }
9 9
10 function test() { 10 function test() {
(...skipping 18 matching lines...) Expand all
29 <div id="res">Test Failed</div> 29 <div id="res">Test Failed</div>
30 30
31 <div id="before" tabIndex=0 /> 31 <div id="before" tabIndex=0 />
32 32
33 <div> 33 <div>
34 <map name="imagemap"> 34 <map name="imagemap">
35 <div> 35 <div>
36 <area id="area" shape="rect" coords="0,0,128,128" href="#dummy" /> 36 <area id="area" shape="rect" coords="0,0,128,128" href="#dummy" />
37 </div> 37 </div>
38 </map> 38 </map>
39 <img src="imagemap.jpg" width="128" height="128" usemap="#imagemap" isma p /> 39 <img width="128" height="128" usemap="#imagemap" ismap />
40 </div> 40 </div>
41 41
42 <div id="after" tabIndex=0 /> 42 <div id="after" tabIndex=0 />
43 43
44 </body> 44 </body>
45 </head> 45 </head>
46 </html> 46 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698