diff options
author | stephan <stephan@noemail.net> | 2022-09-08 15:30:59 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2022-09-08 15:30:59 +0000 |
commit | 44a87f08efbb4d19bb935afb44c3472b4a54a9f9 (patch) | |
tree | 5a13406c64b4cf362a3c0c6b2d1a6ab7376e57c6 /ext/wasm/common/testing.css | |
parent | 3a59dd12d2da38b6372341a9afd91c7a041dfc7e (diff) | |
download | sqlite-44a87f08efbb4d19bb935afb44c3472b4a54a9f9.tar.gz sqlite-44a87f08efbb4d19bb935afb44c3472b4a54a9f9.zip |
Add speedtest1-worker.html, an interactive Worker-thread variant of speedtest1.html. Add ext/wasm/index.html to act as a gateway to the various test pages.
FossilOrigin-Name: f16c68ee6d5ebb8dec2ab656dbab2ddb5f1d5133153ad553f986b31020adaa38
Diffstat (limited to 'ext/wasm/common/testing.css')
-rw-r--r-- | ext/wasm/common/testing.css | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/ext/wasm/common/testing.css b/ext/wasm/common/testing.css index 09c570f48..e112fd0a8 100644 --- a/ext/wasm/common/testing.css +++ b/ext/wasm/common/testing.css @@ -1,3 +1,8 @@ +body { + display: flex; + flex-direction: column; + flex-wrap: wrap; +} textarea { font-family: monospace; } @@ -29,4 +34,17 @@ span.labeled-input { color: red; background-color: yellow; } -#test-output { font-family: monospace } +.warning { color: firebrick; } +.input-wrapper { white-space: nowrap; } +#test-output { + border: 1px inset; + padding: 0.25em; + /*max-height: 30em;*/ + overflow: auto; + white-space: break-spaces; + display: flex; flex-direction: column; + font-family: monospace; +} +#test-output.reverse { + flex-direction: column-reverse; +} |