OLD | NEW |
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 Loading... |
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; |
OLD | NEW |