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/xul-document-load/subdir | |
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/xul-document-load/subdir')
6 files changed, 46 insertions, 0 deletions
diff --git a/layout/reftests/xul-document-load/subdir/test011-overlay.xul b/layout/reftests/xul-document-load/subdir/test011-overlay.xul new file mode 100644 index 000000000..561ec86a9 --- /dev/null +++ b/layout/reftests/xul-document-load/subdir/test011-overlay.xul @@ -0,0 +1,8 @@ +<?xml version="1.0"?> +<!-- +Any copyright is dedicated to the Public Domain. +http://creativecommons.org/licenses/publicdomain/ +--> +<?xml-stylesheet href="test011.css" type="text/css"?> + +<overlay xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"/> diff --git a/layout/reftests/xul-document-load/subdir/test011.css b/layout/reftests/xul-document-load/subdir/test011.css new file mode 100644 index 000000000..9cf783629 --- /dev/null +++ b/layout/reftests/xul-document-load/subdir/test011.css @@ -0,0 +1,6 @@ +/* Any copyright is dedicated to the Public Domain. + * http://creativecommons.org/licenses/publicdomain/ */ + +window { + background-color: green !important; +} diff --git a/layout/reftests/xul-document-load/subdir/test014-overlay-2.xul b/layout/reftests/xul-document-load/subdir/test014-overlay-2.xul new file mode 100644 index 000000000..249e73786 --- /dev/null +++ b/layout/reftests/xul-document-load/subdir/test014-overlay-2.xul @@ -0,0 +1,8 @@ +<?xml version="1.0"?> +<!-- +Any copyright is dedicated to the Public Domain. +http://creativecommons.org/licenses/publicdomain/ +--> +<overlay xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> + <window id="main" style="background-color: green"/> +</overlay> diff --git a/layout/reftests/xul-document-load/subdir/test014-overlay.xul b/layout/reftests/xul-document-load/subdir/test014-overlay.xul new file mode 100644 index 000000000..e25aebcd8 --- /dev/null +++ b/layout/reftests/xul-document-load/subdir/test014-overlay.xul @@ -0,0 +1,8 @@ +<?xml version="1.0"?> +<!-- +Any copyright is dedicated to the Public Domain. +http://creativecommons.org/licenses/publicdomain/ +--> +<?xul-overlay href="test014-overlay-2.xul"?> + +<overlay xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"/> diff --git a/layout/reftests/xul-document-load/subdir/test015-overlay.xul b/layout/reftests/xul-document-load/subdir/test015-overlay.xul new file mode 100644 index 000000000..82bf43963 --- /dev/null +++ b/layout/reftests/xul-document-load/subdir/test015-overlay.xul @@ -0,0 +1,8 @@ +<?xml version="1.0"?> +<!-- +Any copyright is dedicated to the Public Domain. +http://creativecommons.org/licenses/publicdomain/ +--> +<overlay xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> + <script src="test015.js"/> +</overlay> diff --git a/layout/reftests/xul-document-load/subdir/test015.js b/layout/reftests/xul-document-load/subdir/test015.js new file mode 100644 index 000000000..7184beaa5 --- /dev/null +++ b/layout/reftests/xul-document-load/subdir/test015.js @@ -0,0 +1,8 @@ +/* Any copyright is dedicated to the Public Domain. + * http://creativecommons.org/licenses/publicdomain/ */ + +function onLoad() { + document.documentElement.style.backgroundColor = "green"; +} + +addEventListener("load", onLoad, false); |