https://bugs.webkit.org/show_bug.cgi?id=184757
Reviewed by Beth Dakin.
Adds a new layout test to verify that true screen dimensions in extra zoom mode
are observable from the page, via window.screen.
* TestExpectations:
* fast/dom/Window/extrazoom/window-get-real-screen-dimensions.html: Added.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@230901
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2018-04-22 Wenson Hsieh <wenson_hsieh@apple.com>
+
+ Add a layout test for r230785
+ https://bugs.webkit.org/show_bug.cgi?id=184757
+
+ Reviewed by Beth Dakin.
+
+ Adds a new layout test to verify that true screen dimensions in extra zoom mode
+ are observable from the page, via window.screen.
+
+ * TestExpectations:
+ * fast/dom/Window/extrazoom/window-get-real-screen-dimensions.html: Added.
+
2018-04-21 Antoine Quint <graouts@apple.com>
[Modern Media Controls] Show a loading indicator after pressing the play button in compact mode
editing/pasteboard/gtk [ Skip ]
editing/selection/ios [ Skip ]
tiled-drawing [ Skip ]
+fast/dom/Window/extrazoom [ Skip ]
fast/forms/extrazoom [ Skip ]
fast/visual-viewport/extrazoom [ Skip ]
fast/visual-viewport/tiled-drawing [ Skip ]
--- /dev/null
+PASS screen.width is 320
+PASS screen.height is 568
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
--- /dev/null
+<!DOCTYPE html>
+<html>
+<head>
+<script src="../../../../resources/js-test.js"></script>
+</head>
+<body></body>
+<script>
+shouldBe("screen.width", "320");
+shouldBe("screen.height", "568");
+</script>
+</html>
\ No newline at end of file