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/reftests/cssom/computed-style-cross-window-ref.html | |
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/reftests/cssom/computed-style-cross-window-ref.html')
-rw-r--r-- | layout/reftests/cssom/computed-style-cross-window-ref.html | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/layout/reftests/cssom/computed-style-cross-window-ref.html b/layout/reftests/cssom/computed-style-cross-window-ref.html new file mode 100644 index 000000000..01724fefb --- /dev/null +++ b/layout/reftests/cssom/computed-style-cross-window-ref.html @@ -0,0 +1,75 @@ +<!DOCTYPE HTML> +<title>getComputedStyle across windows</title> +<style> +p { color: blue } + +div { margin: 1em 0 } +</style> + +<script> + +var gRunCount = 2; + +function run() { + if (--gRunCount != 0) + return; + + var i = document.getElementById("i"); + + var pout = document.getElementById("out"); + var poutnone = document.getElementById("outnone"); + var poutdet = document.createElement("p"); + var pin = i.contentDocument.getElementsByTagName("p")[0]; + var pinnone = i.contentDocument.getElementsByTagName("p")[1]; + var pindet = i.contentDocument.createElement("p"); + + document.getElementById("res1").style.color = + window.getComputedStyle(pin, "").color; + + document.getElementById("res2").style.color = + i.contentWindow.getComputedStyle(pout, "").color; + + document.getElementById("res3").style.color = + window.getComputedStyle(pinnone, "").color; + + document.getElementById("res4").style.color = + i.contentWindow.getComputedStyle(poutnone, "").color; + + document.getElementById("res5").style.color = + window.getComputedStyle(pindet, "").color; + + document.getElementById("res6").style.color = + i.contentWindow.getComputedStyle(poutdet, "").color; +} + +</script> +<body onload="run()"> + +<p id="out">This is a paragraph outside the iframe.</p> +<div style="display:none"><p id="outnone">This is a paragraph outside the iframe.</p></div> + +<iframe id="i" src="computed-style-cross-window-inner.html" onload="run()"></iframe> + +<div style="color:fuchsia">This paragraph is the color that +outerWindow.getComputedStyle says the paragraph inside the iframe +is.</div> + +<div style="color:blue">This paragraph is the color that +iframeWindow.getComputedStyle says the paragraph outside the iframe +is.</div> + +<div style="color:fuchsia">This paragraph is the color that +outerWindow.getComputedStyle says the display:none paragraph inside the +iframe is.</div> + +<div style="color:blue">This paragraph is the color that +iframeWindow.getComputedStyle says the display:none paragraph outside +the iframe is.</div> + +<div style="color:blue">This paragraph is the color that +outerWindow.getComputedStyle says the detached paragraph inside the +iframe is.</div> + +<div style="color:fuchsia">This paragraph is the color that +iframeWindow.getComputedStyle says the detached paragraph outside +the iframe is.</div> |