OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <script src='../../resources/js-test.js'></script> | 2 <script src='../../resources/js-test.js'></script> |
3 <div id=foo></div> | 3 <div id=foo></div> |
4 <script> | 4 <script> |
5 div = document.getElementById('foo'); | 5 div = document.getElementById('foo'); |
6 shouldBe('div.style.minWidth', '""'); | 6 shouldBe('div.style.minWidth', '""'); |
7 shouldBe('getComputedStyle(div)["min-width"]', '"0px"'); | 7 shouldBe('getComputedStyle(div)["min-width"]', '"0px"'); |
8 | 8 |
9 div.style.minWidth = 'auto'; | 9 div.style.minWidth = 'auto'; |
10 div.style.maxWidth = 'auto'; | 10 div.style.maxWidth = 'auto'; |
11 shouldBe('div.style.minWidth', '""'); | 11 shouldBe('div.style.minWidth', '"auto"'); |
12 shouldBe('div.style.maxWidth', '""'); | 12 shouldBe('div.style.maxWidth', '""'); |
13 shouldBe('getComputedStyle(div).minWidth', '"0px"'); | 13 shouldBe('getComputedStyle(div).minWidth', '"0px"'); |
14 | 14 |
15 div.style.minWidth = 0; | 15 div.style.minWidth = 0; |
16 shouldBe('div.style.minWidth', '"0px"'); | 16 shouldBe('div.style.minWidth', '"0px"'); |
17 shouldBe('getComputedStyle(div)["min-width"]', '"0px"'); | 17 shouldBe('getComputedStyle(div)["min-width"]', '"0px"'); |
18 | 18 |
19 shouldBe('div.style.minHeight', '""'); | 19 shouldBe('div.style.minHeight', '""'); |
20 shouldBe('getComputedStyle(div)["min-height"]', '"0px"'); | 20 shouldBe('getComputedStyle(div)["min-height"]', '"0px"'); |
21 | 21 |
22 div.style.minHeight = 'auto'; | 22 div.style.minHeight = 'auto'; |
23 div.style.maxHeight = 'auto'; | 23 div.style.maxHeight = 'auto'; |
24 shouldBe('div.style.minHeight', '""'); | 24 shouldBe('div.style.minHeight', '"auto"'); |
25 shouldBe('div.style.maxHeight', '""'); | 25 shouldBe('div.style.maxHeight', '""'); |
26 shouldBe('getComputedStyle(div).minHeight', '"0px"'); | 26 shouldBe('getComputedStyle(div).minHeight', '"0px"'); |
27 | 27 |
28 div.style.minHeight = 0; | 28 div.style.minHeight = 0; |
29 shouldBe('div.style.minHeight', '"0px"'); | 29 shouldBe('div.style.minHeight', '"0px"'); |
30 shouldBe('getComputedStyle(div)["min-height"]', '"0px"'); | 30 shouldBe('getComputedStyle(div)["min-height"]', '"0px"'); |
31 | 31 |
32 </script> | 32 </script> |
OLD | NEW |