| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style type="text/css"> | 4 <style type="text/css"> |
| 5 .parent | 5 .parent |
| 6 { | 6 { |
| 7 width:300px; | 7 width:300px; |
| 8 border:1px solid green; | 8 border:1px solid green; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 shouldBe("maxGreatThanMinWidthFixedLayout.getBoundingClientRect().width","202"); | 102 shouldBe("maxGreatThanMinWidthFixedLayout.getBoundingClientRect().width","202"); |
| 103 minGreatThanMaxWidthFixedLayout = document.getElementById("minGreatThanMaxWidthF
ixedLayout"); | 103 minGreatThanMaxWidthFixedLayout = document.getElementById("minGreatThanMaxWidthF
ixedLayout"); |
| 104 shouldBe("minGreatThanMaxWidthFixedLayout.getBoundingClientRect().width","202"); | 104 shouldBe("minGreatThanMaxWidthFixedLayout.getBoundingClientRect().width","202"); |
| 105 onlyMaxWidthFixedLayout = document.getElementById("onlyMaxWidthFixedLayout"); | 105 onlyMaxWidthFixedLayout = document.getElementById("onlyMaxWidthFixedLayout"); |
| 106 shouldBe("onlyMaxWidthFixedLayout.getBoundingClientRect().width","202"); | 106 shouldBe("onlyMaxWidthFixedLayout.getBoundingClientRect().width","202"); |
| 107 maxWidthZeroFixedLayout = document.getElementById("maxWidthZeroFixedLayout"); | 107 maxWidthZeroFixedLayout = document.getElementById("maxWidthZeroFixedLayout"); |
| 108 shouldBe("maxWidthZeroFixedLayout.getBoundingClientRect().width","2"); | 108 shouldBe("maxWidthZeroFixedLayout.getBoundingClientRect().width","2"); |
| 109 | 109 |
| 110 document.body.removeChild(document.getElementById('container')); | 110 document.body.removeChild(document.getElementById('container')); |
| 111 </script> | 111 </script> |
| 112 <script src="../js/resources/js-test-post.js"></script> | |
| 113 <body> | 112 <body> |
| 114 </html> | 113 </html> |
| OLD | NEW |