diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2019-11-07 07:40:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-07 07:40:29 -0500 |
commit | 9a518cf7979b79b34611135d09c1dd0a96945255 (patch) | |
tree | 9ffeb03a554620b6741494bc80fc77596195a649 /tests | |
parent | a33d493a4ff6f8a629a9b82202c49c41ecbefa49 (diff) | |
parent | 4578ae834c286570361d8cc6c1322b3acd3b7751 (diff) | |
download | servo-9a518cf7979b79b34611135d09c1dd0a96945255.tar.gz servo-9a518cf7979b79b34611135d09c1dd0a96945255.zip |
Auto merge of #24677 - jdm:iframe-sizing-cleanup, r=asajeffrey
Ensure all iframes are sized correctly at creation
Following in the path of #22395, these commits serve several purposes:
* prevent layout instability early during iframe loads caused by a succession of resize events
* reduce the complexity of determining what actual DPI and initial window size values are being used at startup
* ensure that all documents have a correct initial viewport size at creation
These changes fix problems that were exposed by the changes in #24462 but are independent of that PR.
---
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] There are tests for these changes
Diffstat (limited to 'tests')
-rw-r--r-- | tests/wpt/mozilla/meta/MANIFEST.json | 2 | ||||
-rw-r--r-- | tests/wpt/mozilla/tests/mozilla/mql_borrow.html | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/tests/wpt/mozilla/meta/MANIFEST.json b/tests/wpt/mozilla/meta/MANIFEST.json index d8d05a7b9d8..e5fcf55da15 100644 --- a/tests/wpt/mozilla/meta/MANIFEST.json +++ b/tests/wpt/mozilla/meta/MANIFEST.json @@ -19034,7 +19034,7 @@ "testharness" ], "mozilla/mql_borrow.html": [ - "17ee0dc48a30933429cb901760ef1b074ed56b6e", + "2f738c738f2efc7b36fcdab31741a34037e673f7", "testharness" ], "mozilla/multiple_redirects.html": [ diff --git a/tests/wpt/mozilla/tests/mozilla/mql_borrow.html b/tests/wpt/mozilla/tests/mozilla/mql_borrow.html index 17ee0dc48a3..2f738c738f2 100644 --- a/tests/wpt/mozilla/tests/mozilla/mql_borrow.html +++ b/tests/wpt/mozilla/tests/mozilla/mql_borrow.html @@ -23,6 +23,7 @@ frame.height=600; frame.width=400; })); + frame.width = 601; </script> |