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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/background-position-serialize-expected.txt

Issue 1363233003: Make sure <url>s are being serialized according to spec (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix interpolation tests Created 5 years, 2 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
1 t.style.backgroundPositionX = '5%'; 1 t.style.backgroundPositionX = '5%';
2 PASS: t.style.backgroundPosition should be and is. 2 PASS: t.style.backgroundPosition should be and is.
3 PASS: t.style.backgroundPositionX should be 5% and is. 3 PASS: t.style.backgroundPositionX should be 5% and is.
4 PASS: t.style.backgroundPositionY should be and is. 4 PASS: t.style.backgroundPositionY should be and is.
5 PASS: t.style.cssText should be background-position-x: 5%; and is. 5 PASS: t.style.cssText should be background-position-x: 5%; and is.
6 PASS: t.getAttribute('style') should be background-position-x: 5%; and is. 6 PASS: t.getAttribute('style') should be background-position-x: 5%; and is.
7 t.style.backgroundPositionY = '5%'; 7 t.style.backgroundPositionY = '5%';
8 PASS: t.style.backgroundPosition should be 5% 5% and is. 8 PASS: t.style.backgroundPosition should be 5% 5% and is.
9 PASS: t.style.backgroundPositionX should be 5% and is. 9 PASS: t.style.backgroundPositionX should be 5% and is.
10 PASS: t.style.backgroundPositionY should be 5% and is. 10 PASS: t.style.backgroundPositionY should be 5% and is.
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 PASS: t.style.backgroundPositionY should be 60% and is. 52 PASS: t.style.backgroundPositionY should be 60% and is.
53 PASS: t.style.cssText should be background-position: 60% 60% !important; and is. 53 PASS: t.style.cssText should be background-position: 60% 60% !important; and is.
54 t.setAttribute('style', 'background-position: 10px 15px, 20px 25px, 30px 35px'); 54 t.setAttribute('style', 'background-position: 10px 15px, 20px 25px, 30px 35px');
55 PASS: t.style.backgroundPosition should be 10px 15px, 20px 25px, 30px 35px and i s. 55 PASS: t.style.backgroundPosition should be 10px 15px, 20px 25px, 30px 35px and i s.
56 PASS: t.style.backgroundPositionX should be 10px, 20px, 30px and is. 56 PASS: t.style.backgroundPositionX should be 10px, 20px, 30px and is.
57 PASS: t.style.backgroundPositionY should be 15px, 25px, 35px and is. 57 PASS: t.style.backgroundPositionY should be 15px, 25px, 35px and is.
58 PASS: t.style.cssText should be background-position: 10px 15px, 20px 25px, 30px 35px; and is. 58 PASS: t.style.cssText should be background-position: 10px 15px, 20px 25px, 30px 35px; and is.
59 t.setAttribute('style', 'background: url(about:blank) 80% 80%;'); 59 t.setAttribute('style', 'background: url(about:blank) 80% 80%;');
60 t.style.backgroundPositionY = '50px' 60 t.style.backgroundPositionY = '50px'
61 style.cssText = 61 style.cssText =
62 background: url(about:blank) 80% 50px; 62 background: url("about:blank") 80% 50px;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698