зеркало из https://github.com/mozilla/gecko-dev.git
15 строки
399 B
HTML
15 строки
399 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<fieldset style="column-count: 2; width: 200px; border: none">
|
|
This is some text that is too long and it will overflow.
|
|
</fieldset>
|
|
<script>
|
|
onload = function() {
|
|
var f = document.querySelector("fieldset");
|
|
window.w = f.offsetWidth;
|
|
f.style.textIndent = "50px";
|
|
document.documentElement.className = "";
|
|
}
|
|
</script>
|
|
</html>
|