Bug 1056479 p5 - fixup printpreview test. r=jfkthame

This commit is contained in:
John Daggett 2015-05-13 14:11:26 +09:00
Родитель 5cd058496d
Коммит e60fbe80e1
1 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -126,7 +126,7 @@ function startTest1() {
window.frames[0].document.body.firstChild.innerHTML = "Print preview"; window.frames[0].document.body.firstChild.innerHTML = "Print preview";
printpreview(); printpreview();
ctx1.drawWindow(window.frames[1], 0, 0, 300, 300, "rgb(256,256,256)"); ctx1.drawWindow(window.frames[1], 0, 0, 400, 400, "rgb(256,256,256)");
window.frames[0].document.body.firstChild.innerHTML = "Galley presentation"; window.frames[0].document.body.firstChild.innerHTML = "Galley presentation";
// Add some elements. // Add some elements.
@ -140,7 +140,7 @@ function startTest1() {
} }
function finalizeTest1() { function finalizeTest1() {
ctx2.drawWindow(window.frames[1], 0, 0, 300, 300, "rgb(256,256,256)"); ctx2.drawWindow(window.frames[1], 0, 0, 400, 400, "rgb(256,256,256)");
exitprintpreview(); exitprintpreview();
ok(compareCanvases(), "Canvas should be the same!"); ok(compareCanvases(), "Canvas should be the same!");
counter = window.frames[0].counter; counter = window.frames[0].counter;
@ -210,13 +210,13 @@ function compareFormElementPrint(el1, el2, equals) {
window.frames[0].document.body.firstChild.value = window.frames[0].document.body.firstChild.value =
window.frames[0].document.body.firstChild.getAttribute('value'); window.frames[0].document.body.firstChild.getAttribute('value');
printpreview(); printpreview();
ctx1.drawWindow(window.frames[1], 0, 0, 300, 300, "rgb(256,256,256)"); ctx1.drawWindow(window.frames[1], 0, 0, 400, 400, "rgb(256,256,256)");
exitprintpreview(); exitprintpreview();
window.frames[0].document.body.innerHTML = el2; window.frames[0].document.body.innerHTML = el2;
window.frames[0].document.body.firstChild.value = window.frames[0].document.body.firstChild.value =
window.frames[0].document.body.firstChild.getAttribute('value'); window.frames[0].document.body.firstChild.getAttribute('value');
printpreview(); printpreview();
ctx2.drawWindow(window.frames[1], 0, 0, 300, 300, "rgb(256,256,256)"); ctx2.drawWindow(window.frames[1], 0, 0, 400, 400, "rgb(256,256,256)");
exitprintpreview(); exitprintpreview();
is(compareCanvases(), equals, is(compareCanvases(), equals,
"Comparing print preview didn't succeed [" + el1 + " : " + el2 + "]"); "Comparing print preview didn't succeed [" + el1 + " : " + el2 + "]");
@ -268,7 +268,7 @@ function runTest6end() {
<table style="border: 1px solid black;" xmlns="http://www.w3.org/1999/xhtml"> <table style="border: 1px solid black;" xmlns="http://www.w3.org/1999/xhtml">
<tr><th>Print preview canvas 1</th><th>Print preview canvas 2</th></tr> <tr><th>Print preview canvas 1</th><th>Print preview canvas 2</th></tr>
<tr> <tr>
<td><canvas height="300" width="300"></canvas></td> <td><canvas height="400" width="400"></canvas></td>
<td><canvas height="300" width="300"></canvas></td> <td><canvas height="400" width="400"></canvas></td>
</tr></table> </tr></table>
</window> </window>