| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <link href="resources/grid.css" rel="stylesheet"> | 4 <link href="resources/grid.css" rel="stylesheet"> |
| 5 <style> | 5 <style> |
| 6 .grid { | 6 .grid { |
| 7 grid-template: "firstArea secondArea" | 7 grid-template: "firstArea secondArea" |
| 8 "thirdArea thirdArea"; | 8 "thirdArea thirdArea"; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 shouldBe("getComputedStyle(element, '').getPropertyValue('grid-column')", "'
auto / 18'"); | 122 shouldBe("getComputedStyle(element, '').getPropertyValue('grid-column')", "'
auto / 18'"); |
| 123 shouldBe("getComputedStyle(element, '').getPropertyValue('grid-row-end')", "
'66'"); | 123 shouldBe("getComputedStyle(element, '').getPropertyValue('grid-row-end')", "
'66'"); |
| 124 shouldBe("getComputedStyle(element, '').getPropertyValue('grid-row')", "'aut
o / 66'"); | 124 shouldBe("getComputedStyle(element, '').getPropertyValue('grid-row')", "'aut
o / 66'"); |
| 125 element.style.gridColumnEnd = "auto"; | 125 element.style.gridColumnEnd = "auto"; |
| 126 element.style.gridRowEnd = "auto"; | 126 element.style.gridRowEnd = "auto"; |
| 127 shouldBe("getComputedStyle(element, '').getPropertyValue('grid-column-end')"
, "'auto'"); | 127 shouldBe("getComputedStyle(element, '').getPropertyValue('grid-column-end')"
, "'auto'"); |
| 128 shouldBe("getComputedStyle(element, '').getPropertyValue('grid-column')", "'
auto / auto'"); | 128 shouldBe("getComputedStyle(element, '').getPropertyValue('grid-column')", "'
auto / auto'"); |
| 129 shouldBe("getComputedStyle(element, '').getPropertyValue('grid-row-end')", "
'auto'"); | 129 shouldBe("getComputedStyle(element, '').getPropertyValue('grid-row-end')", "
'auto'"); |
| 130 shouldBe("getComputedStyle(element, '').getPropertyValue('grid-row')", "'aut
o / auto'"); | 130 shouldBe("getComputedStyle(element, '').getPropertyValue('grid-row')", "'aut
o / auto'"); |
| 131 </script> | 131 </script> |
| 132 <script src="../js/resources/js-test-post.js"></script> | |
| 133 </body> | 132 </body> |
| 134 </html> | 133 </html> |
| OLD | NEW |