diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /layout/generic/test/test_plugin_position.xhtml | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/generic/test/test_plugin_position.xhtml')
-rw-r--r-- | layout/generic/test/test_plugin_position.xhtml | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/layout/generic/test/test_plugin_position.xhtml b/layout/generic/test/test_plugin_position.xhtml new file mode 100644 index 000000000..43190e543 --- /dev/null +++ b/layout/generic/test/test_plugin_position.xhtml @@ -0,0 +1,82 @@ +<?xml version="1.0"?> +<?xml-stylesheet href="/tests/SimpleTest/test.css" type="text/css"?> +<html xmlns="http://www.w3.org/1999/xhtml" title="Test Plugin Positioning"> +<head> + <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> +</head> +<body> + +<!-- Use a XUL element here so we can get its boxObject.screenX/Y --> +<hbox style="height:10px; position:absolute; left:0; top:0; z-index:-100;" id="h1" + xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> + <hbox style="width:100px;"></hbox><hbox id="h2"/> +</hbox> + +<embed id="p" type="application/x-test" width="200" height="200" wmode="window"></embed> +<embed id="p2" type="application/x-test" wmode="window" + style="outline:5px solid blue; width:200px; height:200px; + border:solid black; border-width:4px 8px 4px 8px; + padding:3px 1px;"> +</embed> + +<script class="testbody" type="application/javascript"> +<![CDATA[ + +var windowFrameX, windowFrameY; + +function checkGeometry(id, x, y, w, h) { + var p = document.getElementById(id); + var bounds = p.getBoundingClientRect(); + var pX = p.getEdge(0); + var pY = p.getEdge(1); + var pWidth = p.getEdge(2) - pX; + var pHeight = p.getEdge(3) - pY; + + is(pX, windowFrameX + bounds.left + x, id + " plugin X"); + is(pY, windowFrameY + bounds.top + y, id + " plugin Y"); + is(pWidth, w, id + " plugin width"); + is(pHeight, h, id + " plugin height"); +} + +function runTests() { + var h1 = document.getElementById("h1"); + var h2 = document.getElementById("h2"); + var hwidth = h2.boxObject.screenX - h1.boxObject.screenX; + if (hwidth != 100) { + // Maybe it's a DPI issue + todo(false, "Unexpected DPI?"); + SimpleTest.finish(); + return; + } + + if (!document.getElementById("p").identifierToStringTest) { + todo(false, "Test plugin not available"); + SimpleTest.finish(); + return; + } + + var bounds = h1.getBoundingClientRect(); + windowFrameX = h1.boxObject.screenX - bounds.left - window.screenX; + windowFrameY = h1.boxObject.screenY - bounds.top - window.screenY; + + checkGeometry("p", 0, 0, 200, 200); + // This one tests widget positioning in the presence of borders and padding + checkGeometry("p2", 9, 7, 182, 186); + + SimpleTest.finish(); +} + +// When load events run, painting may still be suppressed for the window. +// While painting is suppressed, plugins are hidden so won't be positioned +// or sized as expected. +// So call runTests after the load event has finished, when painting will +// be unsuppressed. +addLoadEvent(function() { setTimeout(runTests, 1000); }); +SimpleTest.waitForExplicitFinish(); +SimpleTest.requestFlakyTimeout("untriaged"); + +]]> +</script> + +</body> +</html> |