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

Side by Side Diff: LayoutTests/fast/events/resources/tabindex-focus-blur-all-iframe2.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="iframe2body" tabindex="1" onblur="parent.parent.stopTest=true;"> 1 <body id="iframe2body" tabindex="1" onblur="parent.parent.stopTest=true;">
2 2
3 <!--anchor types--> 3 <!--anchor types-->
4 <a href="#" tabindex="0" id="a4">anchor</a><br> 4 <a href="#" tabindex="0" id="a4">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="-1" id="map4"> 6 <map name="theMapName" tabindex="-1" id="map4">
7 <area shape ="rect" coords ="0,0,76,50" href="#" target ="_blank" alt="rectAre a1" id="area4a"/> 7 <area shape ="rect" coords ="0,0,76,50" href="#" target ="_blank" alt="rectAre a1" id="area4a"/>
8 <area shape ="rect" coords ="0,50,76,103" href="#" target ="_blank" alt="rectA rea2" tabindex="1" id="area4b"/> 8 <area shape ="rect" coords ="0,50,76,103" href="#" target ="_blank" alt="rectA rea2" tabindex="1" id="area4b"/>
9 </map><br> 9 </map><br>
10 10
11 <!--media elements--> 11 <!--media elements-->
12 <div id="div4a" tabindex="0"> 12 <div id="div4a" tabindex="0">
13 <audio controls src="../../../media/content/test.wav" tabindex="-1" id="audio4"> </audio><br> 13 <audio controls src="../../../media/content/test.wav" tabindex="-1" id="audio4"> </audio><br>
14 <video controls id="video4"> 14 <video controls id="video4">
15 <source src="../../../media/content/test.mp4" type="video/mpeg" id="source4" > 15 <source src="../../../media/content/test.mp4" type="video/mpeg" id="source4" >
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="" tabindex="0" id="applet4"></applet><br>
22 object:<br>
23 <object type="application/x-no-such-plugin" width="100" height="100" tabindex="- 1" id="object4"></object><br>
24 embed:<br>
25 <embed type="application/x-no-such-plugin" width="100" height="100" id="embed4"> </embed><br>
26
27 <!--presentation-related elements--> 19 <!--presentation-related elements-->
28 <div id="div4b" tabindex="3"> 20 <div id="div4b" tabindex="3">
29 <abbr title="the tooltip" tabindex="0" id="abbr4">abbr makes a tooltip</abbr><br > 21 <abbr title="the tooltip" tabindex="0" id="abbr4">abbr makes a tooltip</abbr><br >
30 <acronym title="the tooltip" tabindex="-1" id="acronym4">acronym makes a tooltip </acronym><br> 22 <acronym title="the tooltip" tabindex="-1" id="acronym4">acronym makes a tooltip </acronym><br>
31 <bdo dir="rtl" id="bdo4">text going right-to-left</bdo><br> 23 <bdo dir="rtl" id="bdo4">text going right-to-left</bdo><br>
32 a blockquote:<blockquote tabindex="3" id="blockquote4">Lorem ipsum dolor sit ame t, consectetuer adipiscing elit. Duis eu nisi. Fusce aliquet massa non felis. Se d consectetuer. In hac habitasse platea dictumst. Nunc vitae nulla. Quisque tris tique sollicitudin libero.</blockquote> 24 a blockquote:<blockquote tabindex="3" id="blockquote4">Lorem ipsum dolor sit ame t, consectetuer adipiscing elit. Duis eu nisi. Fusce aliquet massa non felis. Se d consectetuer. In hac habitasse platea dictumst. Nunc vitae nulla. Quisque tris tique sollicitudin libero.</blockquote>
33 a short quote:<q tabindex="0" id="q4">Veni, Vidi, Vici</q> 25 a short quote:<q tabindex="0" id="q4">Veni, Vidi, Vici</q>
34 <p tabindex="-1" id="p4">paragraph</p> 26 <p tabindex="-1" id="p4">paragraph</p>
35 line break:<br id="br4"> 27 line break:<br id="br4">
36 horizontal rule:<hr tabindex="2" id="hr4"> 28 horizontal rule:<hr tabindex="2" id="hr4">
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 <input type="button" id="inputButton4" value="inputButton" tabindex="0"><br> 154 <input type="button" id="inputButton4" value="inputButton" tabindex="0"><br>
163 <input type="search" id="search4" placeholder="search" tabindex="-1"><br> 155 <input type="search" id="search4" placeholder="search" tabindex="-1"><br>
164 <input type="password" id="password4" tabindex="0"><br> 156 <input type="password" id="password4" tabindex="0"><br>
165 <input type="range" id="range4" tabindex="-1"><br> 157 <input type="range" id="range4" tabindex="-1"><br>
166 <input type="submit" id="submit4" tabindex="1"> 158 <input type="submit" id="submit4" tabindex="1">
167 <input type="reset" id="reset4" tabindex="0"><br> 159 <input type="reset" id="reset4" tabindex="0"><br>
168 </form> 160 </form>
169 </div> 161 </div>
170 162
171 </body> 163 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698