mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 08:18:41 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
27
dom/canvas/test/test_imagebitmap_structuredclone_window.html
Normal file
27
dom/canvas/test/test_imagebitmap_structuredclone_window.html
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
<!DOCTYPE HTML>
|
||||
<title>Test ImageBitmap : StructuredClone main window to main window</title>
|
||||
<meta charset="utf-8">
|
||||
<script src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" href="/tests/SimpleTest/test.css">
|
||||
<body>
|
||||
<script src="imagebitmap_structuredclone_utils.js"></script>
|
||||
<script type="text/javascript">
|
||||
|
||||
window.onmessage = function(event) {
|
||||
compareImageBitmapWithImageElement(event.data.bitmap1, gImage1);
|
||||
compareImageBitmapWithImageElement(event.data.bitmap2, gImage2);
|
||||
compareImageBitmapWithImageData(event.data.bitmap3, gImageData, "Check preserving alpha");
|
||||
SimpleTest.finish();
|
||||
}
|
||||
|
||||
function runTests() {
|
||||
prepareImageBitmaps().then(function(){
|
||||
window.postMessage({"bitmap1":gImageBitmap1, "bitmap2":gImageBitmap2, "bitmap3":gImageBitmap3}, "*");
|
||||
});
|
||||
}
|
||||
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
addLoadEvent(runTests);
|
||||
|
||||
</script>
|
||||
</body>
|
||||
Loading…
Add table
Add a link
Reference in a new issue