mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
1b4863c480
--HG-- extra : rebase_source : 1914dd5f2998a2f45e10ccf3574d854ba9240f52
26 lines
639 B
HTML
26 lines
639 B
HTML
<html>
|
|
<head>
|
|
<title>Reftest for bug 388980</title></html>
|
|
<script type="text/javascript">
|
|
|
|
var text = '<html><head></head><body style="font-size:16px;">'
|
|
+ '<p style="background-color:red;">This paragraph should be red</p>'
|
|
+ '<p style="background-color:blue;">This paragraph should be blue</p>'
|
|
+ '<p>This paragraph should not be colored</p>'
|
|
+ '</body></html>';
|
|
|
|
function initIFrame() {
|
|
var doc = document.getElementById('theIFrame').contentDocument;
|
|
doc.designMode = 'on';
|
|
doc.open('text/html');
|
|
doc.write(text);
|
|
doc.close();
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="initIFrame()" >
|
|
<iframe id="theIFrame">
|
|
</iframe>
|
|
</body>
|
|
</html>
|