mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 10:27:32 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
35
layout/reftests/tab-size/tab-size-change-1b.html
Normal file
35
layout/reftests/tab-size/tab-size-change-1b.html
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
<!DOCTYPE html>
|
||||
<html class="reftest-wait">
|
||||
<head>
|
||||
<style type="text/css">
|
||||
body {
|
||||
font-family: serif;
|
||||
padding: 2px;
|
||||
}
|
||||
span {
|
||||
padding: 2px;
|
||||
}
|
||||
</style>
|
||||
<script type="text/javascript">
|
||||
function do_test() {
|
||||
var elems = ["one","two","three","four","five","six","seven","eight","nine","ten"];
|
||||
for (key in elems) {
|
||||
var e = document.getElementById(elems[key]);
|
||||
e.innerHTML = elems[key];
|
||||
}
|
||||
document.documentElement.removeAttribute('class');
|
||||
};
|
||||
document.addEventListener("MozReftestInvalidate", do_test, false);
|
||||
</script>
|
||||
</head>
|
||||
<!-- Test for modification of text with preformatted tabs, see
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=631035#c38.
|
||||
In the first line, the tabs remain at the same offsets but widths will change;
|
||||
in the second line, their offsets will also change. -->
|
||||
<body>
|
||||
<div style="white-space: pre">
|
||||
<span id="one">iii</span>	<span id="two">iii</span>	<span id="three">mmmmm</span>	<span id="four">mmmm</span>	<span id="five">mmmm</span>
|
||||
<span id="six">x</span>	<span id="seven">x</span>	<span id="eight">x</span>	<span id="nine">x</span>	<span id="ten">x</span>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue