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

Side by Side Diff: third_party/webdriver/test_data/xhtmlTest.html

Issue 424363004: Update third_party/webdriver/pylib to r18456 and delete test_data (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: "python" -> "pylib" Created 6 years, 4 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
« no previous file with comments | « third_party/webdriver/test_data/xhtmlFormPage.xhtml ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <?xml version="1.0"?>
2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3 <head>
4 <title>XHTML Test Page</title>
5 </head>
6 <body>
7 <div class="navigation">
8 <p><a href="resultPage.html" target="result" name="windowOne">Open new windo w</a></p>
9 <p><a href="iframes.html" target="_blank" name="windowTwo">Create a new anon ymous window</a></p>
10 <p><a href="iframes.html" name="sameWindow">Open page with iframes in same w indow</a></p>
11 <p><a href="javascriptPage.html" target="result" name="windowThree">Open a w indow with a close button</a></p>
12 </div>
13
14 <a name="notext"><b></b></a>
15
16 <div class="content">
17 <h1 class="header">XHTML Might Be The Future</h1>
18
19 <p>If you'd like to go elsewhere then <a href="resultPage.html">click me</a> .</p>
20
21 <p>Alternatively, <a href="resultPage.html" id="linkId">this goes to the sam e place</a>.</p>
22
23 <form name="someForm">
24 <input id="username" type="text" value="change"/>
25 </form>
26
27 This link has the same text as another link: <a href="resultPage.html">click me</a>.
28 </div>
29
30 <div class="extraDiv">Another div starts here.<p/>
31 <h2 class="nameA nameBnoise nameC">An H2 title</h2>
32 <p class="nameC">Some more text</p>
33 </div>
34
35 <div>
36 <a id="id1" href="#">Foo</a>
37 <ul id="id2" />
38 <span id="id3"/>
39 </div>
40
41 <div>
42 <table id="table" ></table>
43 </div>
44
45 <span id="amazing">
46 <div>
47 <div>
48 <div>
49 <span/>
50 <a>I have width</a>
51 </div>
52 </div>
53 </div>
54 </span>
55
56 <a name="text" />
57 <p id="spaces"> </p>
58 <p id="empty"></p>
59 <a href="foo" id="linkWithEqualsSign">Link=equalssign</a>
60
61 <p class=" spaceAround ">Spaced out</p>
62
63 <span id="my_span">
64 <div>first_div</div>
65 <div>second_div</div>
66 <span>first_span</span>
67 <span>second_span</span>
68 </span>
69
70 <div id="parent">I'm a parent
71 <div id="child">I'm a child</div>
72 </div>
73
74 <div id="only-exists-on-xhtmltest">Woo woo</div>
75 </body>
76 </html>
OLDNEW
« no previous file with comments | « third_party/webdriver/test_data/xhtmlFormPage.xhtml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698