зеркало из https://github.com/mozilla/gecko-dev.git
17 строки
425 B
HTML
17 строки
425 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<div style="overflow: hidden; width: 130px">
|
|
Some long text that cannot possibly fit in 130px.
|
|
</div>
|
|
|
|
<script>
|
|
onload = function() {
|
|
var div = document.querySelector("div");
|
|
// Make sure layout has happened.
|
|
window.width = div.offsetWidth;
|
|
div.style.columnCount = "2";
|
|
document.documentElement.className = "";
|
|
}
|
|
</script>
|
|
</html>
|