Adding a whole bunch of canvas mochitests. Bug 407049, tests contributed by
Philip Taylor <philip.taylor@cl.cam.ac.uk> git-svn-id: svn://10.0.0.236/trunk@240557 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
22
mozilla/content/canvas/test/test_fallback.basic.html
Normal file
22
mozilla/content/canvas/test/test_fallback.basic.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<!DOCTYPE HTML>
|
||||
<title>Canvas test: fallback.basic</title>
|
||||
<script src="/MochiKit/MochiKit.js"></script>
|
||||
<script src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css">
|
||||
<body>
|
||||
<canvas id="c" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
|
||||
<script>
|
||||
var _deferred = false;
|
||||
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
MochiKit.DOM.addLoadEvent(function () {
|
||||
|
||||
var canvas = document.getElementById('c');
|
||||
var ctx = canvas.getContext('2d');
|
||||
|
||||
ok(canvas.childNodes.length == 1, "canvas.childNodes.length == 1");
|
||||
|
||||
if (!_deferred) SimpleTest.finish();
|
||||
});
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user