blob: 4b9c796be4030aaff406f8376910e94945b05e9e [file] [log] [blame]
<!--
Copyright 2015 The Go Authors. All rights reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file.
-->
<html>
<head>
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no'>
<style>
body {
padding: 0;
margin: 0;
margin-top: 20px;
font-family: Menlo, monospace;
}
.flowhide {
text-overflow: ellipsis;
word-break: break-word;
overflow-wrap: break-word;
}
.flowshow {
word-break: break-all;
}
</style>
<script>
function flowclick(el) {
el.classList.toggle("flowhide");
el.classList.toggle("flowshow");
}
function appendDiv(text) {
var el = document.createElement("div");
el.classList.add("flowhide");
el.innerHTML = text;
el.onclick = function() {
flowclick(el);
};
document.body.appendChild(el);
window.scrollBy(0, document.body.offsetHeight);
}
</script>
<body>
</body>
</html>