mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
de9e54b7e9
--HG-- rename : layout/reftests/bugs/448987.html => layout/generic/test/file_bug448987.html rename : layout/reftests/bugs/448987-ref.html => layout/generic/test/file_bug448987_ref.html rename : layout/reftests/bugs/449653-1.html => layout/generic/test/file_bug449653_1.html rename : layout/reftests/bugs/449653-1-ref.html => layout/generic/test/file_bug449653_1_ref.html
19 lines
567 B
HTML
19 lines
567 B
HTML
<html><head>
|
|
<title>Bug 449653 - drawWindow on canvas fails on load, draws white instead of specified region</title>
|
|
<style>
|
|
html, body {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
</style>
|
|
</head><body>
|
|
<div style="width: 100px; height: 100px; background-color: lime;"></div>
|
|
<br>
|
|
<canvas id="canvas" width="100" height="100" style="background-color: red;"></canvas>
|
|
<script>
|
|
var canvas = document.getElementById("canvas");
|
|
var ctx = canvas.getContext("2d");
|
|
SpecialPowers.wrap(ctx).drawWindow(window, 0, 0, 100, 100, "white");
|
|
</script>
|
|
</body></html>
|