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

Side by Side Diff: Source/WebKit/chromium/tests/data/disambiguation_popup_blacklist.html

Issue 19906002: Move data/ directory from WebKit/chromium/tests into web/tests/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years, 5 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
(Empty)
1 <html>
2 <head>
3 <style>
4 div {
5 height: 100px;
6 margin: 0px;
7 text-align: center;
8 width: 100%;
9 }
10 div.tightlyPacked {
11 background-color: pink;
12 border: 1px solid black;
13 }
14 div.bugContainer {
15 background-color: cyan;
16 }
17 </style>
18 </head>
19 <body>
20 <div class="tightlyPacked" onclick="window.location='#first';">
21 <div>Leaf node #1</div>
22 </div>
23 <div class="tightlyPacked" onclick="window.location='#second';">
24 <div>Leaf node #2</div>
25 </div>
26 <div></div>
27 <div class="bugContainer" onclick="window.location='#third';">
28 <p class="title">
29 <a class="title" href="#fourth">Random link</a>
30 </p>
31 <p>
32 Breaking node
33 </p>
34 </div>
35 </body>
36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698