bug 619272 - fix intermittent failure on css-import/290018-1.html by giving the text some padding. r=roc a=test-only patch hoping to fix orange on the CLOSED TREE

This commit is contained in:
Jonathan Kew 2010-12-15 00:06:30 -08:00
parent 6c434fc7a6
commit 223ea6a71c
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
win.document.write("<!DOCTYPE html><html><head></head><body></body></html>");
win.document.close();
win.document.body.innerHTML = "<link rel='stylesheet' type='text/css' href='outer-sheet.css' />";
win.document.body.innerHTML += "<p>test</p>";
win.document.body.innerHTML += "<p style='padding:2px'>test</p>";
</script>
</body>

View File

@ -4,7 +4,7 @@
<script>
var win = window.frames[0];
win.document.open();
win.document.write("<!DOCTYPE html><html><head><link rel='stylesheet' type='text/css' href='outer-sheet.css' /></head><body><p>test</p></body></html>");
win.document.write("<!DOCTYPE html><html><head><link rel='stylesheet' type='text/css' href='outer-sheet.css' /></head><body><p style='padding:2px'>test</p></body></html>");
win.document.close();
</script>
</body>