зеркало из https://github.com/mozilla/gecko-dev.git
38 строки
803 B
HTML
38 строки
803 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=573969
|
|
-->
|
|
<head>
|
|
<title>Test for Bug 573969</title>
|
|
<script src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
|
</head>
|
|
<body>
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=573969">Mozilla Bug 573969</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none">
|
|
<xmp id='x'></xmp>
|
|
</div>
|
|
<pre id="test">
|
|
<script type="application/javascript">
|
|
|
|
/** Test for Bug 573969 **/
|
|
|
|
var testData = [
|
|
'<div>foo</div>',
|
|
'<div></div>',
|
|
];
|
|
|
|
var x = document.getElementById('x');
|
|
|
|
for (v of testData) {
|
|
x.innerHTML = v;
|
|
is(x.innerHTML, v, "innerHTML value should not be escaped");
|
|
}
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|