mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-19 07:26:26 +00:00
Bug 455629 - Test that we actually do wrap the return value of nsISVGDocument::getSVGDocument in a XOW. r=bzbarsky
--HG-- extra : rebase_source : 471ed08d3cc3ab957f44a6b65b8f2bd8c5e7d41d
This commit is contained in:
parent
50dec62271
commit
3396986416
@ -270,6 +270,8 @@ _TEST_FILES = test_bug5141.html \
|
||||
test_bug444322.html \
|
||||
bug444322.txt \
|
||||
bug444322.js \
|
||||
test_bug455629.html \
|
||||
bug455629-helper.svg \
|
||||
$(NULL)
|
||||
|
||||
# Disabled for now. Mochitest isn't reliable enough for these.
|
||||
|
6
content/base/test/bug455629-helper.svg
Normal file
6
content/base/test/bug455629-helper.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="scale(0.5)">
|
||||
<foreignObject id="f" width="100" height="100"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 159 B |
64
content/base/test/test_bug455629.html
Normal file
64
content/base/test/test_bug455629.html
Normal file
@ -0,0 +1,64 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=455629
|
||||
-->
|
||||
<head>
|
||||
<title>Test for Bug 455629</title>
|
||||
<script type="application/javascript" src="/MochiKit/MochiKit.js"></script>
|
||||
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=455629">Mozilla Bug 455629</a>
|
||||
<p id="display"></p>
|
||||
<div id="content" style="display: none">
|
||||
|
||||
</div>
|
||||
<pre id="test">
|
||||
<script type="application/javascript">
|
||||
/** Test for Bug 455629 **/
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
|
||||
var done = 0;
|
||||
function doTest(name) {
|
||||
var elem = $(name);
|
||||
var doc = elem.getSVGDocument();
|
||||
try {
|
||||
doc.foopy = 42;
|
||||
fail("Able to set cross origin property!");
|
||||
} catch (e) {
|
||||
ok(true, "unable to set non-allAccess property cross origin");
|
||||
}
|
||||
|
||||
if (elem instanceof HTMLObjectElement) {
|
||||
doc = elem.contentDocument;
|
||||
try {
|
||||
doc.foopy = 42;
|
||||
fail("Able to set cross origin property!");
|
||||
} catch (e) {
|
||||
ok(true, "unable to set non-allAccess property cross origin");
|
||||
}
|
||||
}
|
||||
|
||||
if (++done == 2) {
|
||||
SimpleTest.finish();
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<object id="obj"
|
||||
type="image/svg+xml"
|
||||
onload="doTest('obj')"
|
||||
data="http://example.org/tests/content/base/test/bug455629-helper.svg">
|
||||
</object>
|
||||
|
||||
<embed id="emb"
|
||||
type="image/svg+xml"
|
||||
onload="doTest('emb')"
|
||||
src="http://example.org/tests/content/base/test/bug455629-helper.svg">
|
||||
</embed>
|
||||
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user