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

Side by Side Diff: LayoutTests/fast/block/float/override-property-float.html

Issue 1048803002: Remove support of nonstandard 'CSSValueCenter' property value for floated element. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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
OLDNEW
(Empty)
1 <!doctype html>
2 <html>
3 <head>
4 <script src="../../../resources/js-test.js"></script>
5 <style>
6 #test {
7 width:100px;
8 height:100px;
9 background:red;
Timothy Loh 2015/03/30 23:55:14 green please :-)
Abhijeet Kandalkar Slow 2015/03/31 05:04:19 Done.
10 float:right;
11 float:center;
12 }
13 </style>
14 </head>
15 <body>
16 <div id="test">TEXT</div>
17 </body>
18 <script>
19 description('If this test passes, the red box should be on the right side of pag e.');
20 var element = document.getElementById('test');
21 shouldBeEqualToString('window.getComputedStyle(element, null).getPropertyValue(" float")', 'right');
22 </script>
23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698