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

Side by Side Diff: LayoutTests/fast/fast-mobile-scrolling/fixed-position-element.html

Issue 14195011: Removed WONTFIX tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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 #square
5 {
6 height: 64px;
7 width: 64px;
8 margin-top: 3em;
9 background: green url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAAB ACAIAAAAlC+aJAAAAAXNSR0IArs4c6QAAAE1JREFUaN7tz0ENAAAIBKDT/p21gX83aEBl8lonAgICAgI CAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgK3BVGGAX99FLDRAAAAAElFTkS uQmCC') no-repeat fixed
10 }
11 #fixed-position-element
12 {
13 position: fixed;
14 top: 100px;
15 height: 64px;
16 width: 64px;
17 }
18 </style>
19 </head>
20 <body>
21 <p>This tests that fixed background images are honored on a page with at least o ne fixed position element. If the square (below) is green, then the test PASSED. </p>
22 <div id="square">&nbsp;</div>
23 <div id="fixed-position-element">&nbsp;</div>
24 </body>
25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698