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/plugin_clipping_helper_table.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/plugin_clipping_helper_table.xhtml')
-rw-r--r-- | layout/generic/test/plugin_clipping_helper_table.xhtml | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/layout/generic/test/plugin_clipping_helper_table.xhtml b/layout/generic/test/plugin_clipping_helper_table.xhtml new file mode 100644 index 000000000..bd4073e10 --- /dev/null +++ b/layout/generic/test/plugin_clipping_helper_table.xhtml @@ -0,0 +1,44 @@ +<?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 Clipping: Plugins and Tables"> +<head> + <style> + embed { width:300px; height:200px; display:block; } + </style> +</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="p1" type="application/x-test" wmode="window" + style="position:absolute; top:0; left:0;"></embed> +<table style="width:300px; height:100px; position:absolute; top:100px; left:0; background:white;"> +</table> +<embed id="p2" type="application/x-test" wmode="window" + style="position:absolute; top:200px; left:0;"></embed> +<table style="width:300px; height:300px; position:absolute; top:300px; left:0; background:white; border-collapse:collapse;"> +</table> + +<script src="plugin_clipping_lib.js"></script> +<script class="testbody" type="application/javascript"> +<![CDATA[ + +function runTests() { + // p1 is partially covered by a table with an opaque background + checkClipRegion("p1", [[0, 0, 300, 100]]); + // p2 is partially covered by a table with an opaque background + checkClipRegion("p2", [[0, 0, 300, 100]]); + + window.opener.SimpleTest.finish(); + window.close(); +} + +]]> +</script> + +</body> +</html> |