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

Side by Side Diff: LayoutTests/fast/events/resources/tabindex-focus-blur-all-frame2.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="frame2body"> 1 <body id="frame2body">
2 2
3 <!--anchor types--> 3 <!--anchor types-->
4 <a href="#" tabindex="1" id="a3">anchor</a><br> 4 <a href="#" tabindex="1" id="a3">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="0" id="map3"> 6 <map name="theMapName" tabindex="0" id="map3">
7 <area shape ="rect" coords ="0,0,76,50" href="#" target ="_blank" alt="rectAre a1" tabindex="-1" id="area3a"/> 7 <area shape ="rect" coords ="0,0,76,50" href="#" target ="_blank" alt="rectAre a1" tabindex="-1" id="area3a"/>
8 <area shape ="rect" coords ="0,50,76,103" href="#" target ="_blank" alt="rectA rea3" id="area3b"/> 8 <area shape ="rect" coords ="0,50,76,103" href="#" target ="_blank" alt="rectA rea3" id="area3b"/>
9 </map><br> 9 </map><br>
10 10
11 <!--media elements--> 11 <!--media elements-->
12 <div id="div3a" tabindex="1"> 12 <div id="div3a" tabindex="1">
13 <audio controls src="../../../media/content/test.wav" tabindex="0" id="audio3">< /audio><br> 13 <audio controls src="../../../media/content/test.wav" tabindex="0" id="audio3">< /audio><br>
14 <video controls tabindex="-1" id="video3"> 14 <video controls tabindex="-1" id="video3">
15 <source src="../../../media/content/test.mp4" type="video/mpeg" id="source3" > 15 <source src="../../../media/content/test.mp4" type="video/mpeg" id="source3" >
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="2" id="applet3"></applet><br>
22 object:<br>
23 <object type="application/x-no-such-plugin" width="100" height="100" tabindex="0 " id="object3"></object><br>
24 embed:<br>
25 <embed type="application/x-no-such-plugin" width="100" height="100" tabindex="-1 " id="embed3"></embed><br>
26
27 <!--presentation-related elements--> 19 <!--presentation-related elements-->
28 <div id="div3b"> 20 <div id="div3b">
29 <abbr title="the tooltip" tabindex="3" id="abbr3">abbr makes a tooltip</abbr><br > 21 <abbr title="the tooltip" tabindex="3" id="abbr3">abbr makes a tooltip</abbr><br >
30 <acronym title="the tooltip" tabindex="0" id="acronym3">acronym makes a tooltip< /acronym><br> 22 <acronym title="the tooltip" tabindex="0" id="acronym3">acronym makes a tooltip< /acronym><br>
31 <bdo dir="rtl" tabindex="-1" id="bdo3">text going right-to-left</bdo><br> 23 <bdo dir="rtl" tabindex="-1" id="bdo3">text going right-to-left</bdo><br>
32 a blockquote:<blockquote id="blockquote3">Lorem ipsum dolor sit amet, consectetu er adipiscing elit. Duis eu nisi. Fusce aliquet massa non felis. Sed consectetue r. In hac habitasse platea dictumst. Nunc vitae nulla. Quisque tristique sollici tudin libero.</blockquote> 24 a blockquote:<blockquote id="blockquote3">Lorem ipsum dolor sit amet, consectetu er adipiscing elit. Duis eu nisi. Fusce aliquet massa non felis. Sed consectetue r. In hac habitasse platea dictumst. Nunc vitae nulla. Quisque tristique sollici tudin libero.</blockquote>
33 a short quote:<q tabindex="3" id="q3">Veni, Vidi, Vici</q> 25 a short quote:<q tabindex="3" id="q3">Veni, Vidi, Vici</q>
34 <p tabindex="0" id="p3">paragraph</p> 26 <p tabindex="0" id="p3">paragraph</p>
35 line break:<br tabindex="-1" id="br3"> 27 line break:<br tabindex="-1" id="br3">
36 horizontal rule:<hr id="hr3"> 28 horizontal rule:<hr id="hr3">
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 <input type="reset" id="reset3" tabindex="2"><br> 158 <input type="reset" id="reset3" tabindex="2"><br>
167 </form> 159 </form>
168 </div> 160 </div>
169 161
170 <iframe width="100%" height="75%" src="tabindex-focus-blur-all-iframe2.html" id= "iframe2a" tabindex="0"></iframe> 162 <iframe width="100%" height="75%" src="tabindex-focus-blur-all-iframe2.html" id= "iframe2a" tabindex="0"></iframe>
171 <iframe src="tabindex-focus-blur-all-frame3.html" id="iframe2b" tabindex="1"></i frame> 163 <iframe src="tabindex-focus-blur-all-frame3.html" id="iframe2b" tabindex="1"></i frame>
172 164
173 <input class="homebase"> 165 <input class="homebase">
174 166
175 </body> 167 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698