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 /dom/base/test/file_bug704320_preload_reuse.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 'dom/base/test/file_bug704320_preload_reuse.html')
-rw-r--r-- | dom/base/test/file_bug704320_preload_reuse.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/dom/base/test/file_bug704320_preload_reuse.html b/dom/base/test/file_bug704320_preload_reuse.html new file mode 100644 index 000000000..5643e3d8d --- /dev/null +++ b/dom/base/test/file_bug704320_preload_reuse.html @@ -0,0 +1,31 @@ +<!DOCTYPE HTML> +<html> +<!-- +This is a spot check for whether the speculative parser reuses style, script or image loads after the referrer policy has changed. +https://bugzilla.mozilla.org/show_bug.cgi?id=704320 +--> +<head> + <meta charset="utf-8"> + <meta name="referrer" content="origin"> + <script type="text/javascript" src="file_bug704320_preload_common.js"></script> + <script language="javascript" type="text/javascript"> + // mess with parser speculation -- the loads here MAY be reused because the + // referrer policy did not change. + document.write("<meta name='referrer' content='origin'>"); + </script> + + <script src="http://example.com/tests/dom/base/test/bug704320_counter.sjs?type=js" + onload="incrementLoad('script');"></script> + + <link rel="stylesheet" + href="http://example.com/tests/dom/base/test/bug704320_counter.sjs?type=css" + onload="incrementLoad('link');"/> + +</head> +<body> + +<img src="http://example.com/tests/dom/base/test/bug704320_counter.sjs?type=img" + onload="incrementLoad('img');" + onerror="postfail('image load caused an error in reuse test');"/> +</body> +</html> |