gecko/layout/reftests/bugs/388980-1.html
Jonathan Kew 1b4863c480 Bug 518357, make reftests less sensitive to default font size settings. r=roc
--HG--
extra : rebase_source : 1914dd5f2998a2f45e10ccf3574d854ba9240f52
2009-09-23 15:55:55 +01:00

45 lines
1.2 KiB
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 id="redpar">This paragraph should be red</p>'
+ '<p id="bluepar">This paragraph should be blue</p>'
+ '<p id="normalpar">This paragraph should not be colored</p>'
+'</body></html>';
function colorPar(par, color) {
var doc = document.getElementById('theIFrame').contentDocument;
var win = document.getElementById('theIFrame').contentWindow;
win.getSelection().selectAllChildren(doc.getElementById(par));
doc.execCommand("hilitecolor", false, color);
win.getSelection().removeAllRanges();
}
function initIFrame() {
var doc = document.getElementById('theIFrame').contentDocument;
doc.designMode = 'on';
doc.open('text/html');
doc.write(text);
doc.close();
// Test hilighting with styleWithCSS, should hilight the text...
doc.execCommand("styleWithCSS", false, true);
colorPar("redpar", "red");
colorPar("bluepar", "blue");
// Test highlighting without styleWithCSS, should do nothing.
doc.execCommand("styleWithCSS", false, false);
colorPar("normalpar", "red");
}
</script>
</head>
<body>
<iframe id="theIFrame" onload="initIFrame()">
</iframe>
</body>
</html>