зеркало из https://github.com/mozilla/gecko-dev.git
47 строки
1.2 KiB
HTML
47 строки
1.2 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Test for PaintWorklet</title>
|
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
|
<script type="application/javascript" src="common.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<script type="application/javascript">
|
|
|
|
function configureTest() {
|
|
function consoleListener() {
|
|
SpecialPowers.addObserver(this, "console-api-log-event", false);
|
|
}
|
|
|
|
consoleListener.prototype = {
|
|
observe: function(aSubject, aTopic, aData) {
|
|
if (aTopic == "console-api-log-event") {
|
|
var obj = aSubject.wrappedJSObject;
|
|
if (obj.arguments[0] == "So far so good") {
|
|
ok(true, "Message received \\o/");
|
|
|
|
SpecialPowers.removeObserver(this, "console-api-log-event");
|
|
SimpleTest.finish();
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
var cl = new consoleListener();
|
|
|
|
return SpecialPowers.pushPrefEnv(
|
|
{"set": [["dom.paintWorklet.enabled", true],
|
|
["dom.worklet.enabled", true]]});
|
|
}
|
|
|
|
// This function is called into an iframe.
|
|
function runTestInIframe() {
|
|
paintWorklet.import("worklet_paintWorklet.js")
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|