summaryrefslogtreecommitdiffstats
path: root/editor/reftests/388980-1-ref.html
blob: 8b14d7e185c1dd547f70c8493f770fb7fafc2ca5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<html>
<head>
<title>Reftest for bug 388980</title></html>
<script type="text/javascript">

var text = '<html><head></head><body style="font-size:16px;">'
	+ '<p><span style="background-color:red;">This paragraph should be red</span></p>'
	+ '<p><span style="background-color:blue;">This paragraph should be blue</span></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>