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

Side by Side Diff: LayoutTests/fast/events/resources/tabindex-focus-blur-all-iframe1.html

Issue 307943002: Oilpan: Prepare moving InspectorController and InspectorAgents to oilpan. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed WorkerDebuggerAgent Created 6 years, 6 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 <body id="iframe1body" tabindex="-1"> 1 <body id="iframe1body" tabindex="-1">
2 2
3 <!--anchor types--> 3 <!--anchor types-->
4 <a href="#" id="a2">anchor</a><br> 4 <a href="#" id="a2">anchor</a><br>
5 <img src ="abe.png" width="76" height="103" alt="honest abe" usemap ="#theMapNam e" /> 5 <img src ="abe.png" width="76" height="103" alt="honest abe" usemap ="#theMapNam e" />
6 <map name="theMapName" tabindex="2" id="map2"> 6 <map name="theMapName" tabindex="2" id="map2">
7 <area shape ="rect" coords ="0,0,76,50" href="#" target ="_blank" alt="rectAre a1" tabindex="0" id="area2a"/> 7 <area shape ="rect" coords ="0,0,76,50" href="#" target ="_blank" alt="rectAre a1" tabindex="0" id="area2a"/>
8 <area shape ="rect" coords ="0,50,76,103" href="#" target ="_blank" alt="rectA rea2" tabindex="-1" id="area2b"/> 8 <area shape ="rect" coords ="0,50,76,103" href="#" target ="_blank" alt="rectA rea2" tabindex="-1" id="area2b"/>
9 </map><br> 9 </map><br>
10 10
11 <!--media elements--> 11 <!--media elements-->
12 <div id="div2a"> 12 <div id="div2a">
13 <audio controls src="../../../media/content/test.wav" tabindex="3" id="audio2">< /audio><br> 13 <audio controls src="../../../media/content/test.wav" tabindex="3" id="audio2">< /audio><br>
14 <video controls tabindex="0" id="video2"> 14 <video controls tabindex="0" id="video2">
15 <source src="../../../media/content/test.mp4" type="video/mpeg" id="source2" > 15 <source src="../../../media/content/test.mp4" type="video/mpeg" id="source2" >
16 </video><br> 16 </video><br>
17 </div> 17 </div>
18 18
19 <!--embedded elements-->
20 applet:<br>
21 <applet width="100" height="100" code="" id="applet2"></applet><br>
22 object:<br>
23 <object type="application/x-no-such-plugin" width="100" height="100" tabindex="3 " id="object2"></object><br>
24 embed:<br>
25 <embed type="application/x-no-such-plugin" width="100" height="100" tabindex="0" id="embed2"></embed><br>
26
27 <!--presentation-related elements--> 19 <!--presentation-related elements-->
28 <div id="div2b" tabindex="-1"> 20 <div id="div2b" tabindex="-1">
29 <abbr title="the tooltip" id="abbr2">abbr makes a tooltip</abbr><br> 21 <abbr title="the tooltip" id="abbr2">abbr makes a tooltip</abbr><br>
30 <acronym title="the tooltip" tabindex="2" id="acronym2">acronym makes a tooltip< /acronym><br> 22 <acronym title="the tooltip" tabindex="2" id="acronym2">acronym makes a tooltip< /acronym><br>
31 <bdo dir="rtl" tabindex="0" id="bdo2">text going right-to-left</bdo><br> 23 <bdo dir="rtl" tabindex="0" id="bdo2">text going right-to-left</bdo><br>
32 a blockquote:<blockquote tabindex="-1" id="blockquote2">Lorem ipsum dolor sit am et, consectetuer adipiscing elit. Duis eu nisi. Fusce aliquet massa non felis. S ed consectetuer. In hac habitasse platea dictumst. Nunc vitae nulla. Quisque tri stique sollicitudin libero.</blockquote> 24 a blockquote:<blockquote tabindex="-1" id="blockquote2">Lorem ipsum dolor sit am et, consectetuer adipiscing elit. Duis eu nisi. Fusce aliquet massa non felis. S ed consectetuer. In hac habitasse platea dictumst. Nunc vitae nulla. Quisque tri stique sollicitudin libero.</blockquote>
33 a short quote:<q id="q2">Veni, Vidi, Vici</q> 25 a short quote:<q id="q2">Veni, Vidi, Vici</q>
34 <p tabindex="3" id="p2">paragraph</p> 26 <p tabindex="3" id="p2">paragraph</p>
35 line break:<br tabindex="0" id="br2"> 27 line break:<br tabindex="0" id="br2">
36 horizontal rule:<hr tabindex="-1" id="hr2"> 28 horizontal rule:<hr tabindex="-1" id="hr2">
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 <input type="button" id="inputButton2" value="inputButton"><br> 153 <input type="button" id="inputButton2" value="inputButton"><br>
162 <input type="search" id="search2" placeholder="search" tabindex="2"><br> 154 <input type="search" id="search2" placeholder="search" tabindex="2"><br>
163 <input type="password" id="password2"><br> 155 <input type="password" id="password2"><br>
164 <input type="range" id="range2" tabindex="0"><br> 156 <input type="range" id="range2" tabindex="0"><br>
165 <input type="submit" id="submit2" tabindex="-1"> 157 <input type="submit" id="submit2" tabindex="-1">
166 <input type="reset" id="reset2"><br> 158 <input type="reset" id="reset2"><br>
167 </form> 159 </form>
168 </div> 160 </div>
169 161
170 </body> 162 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698