Add some text to test HTML pages.

With 6.4 and 6.5 it looks like pages without text on them only render
after a delay (on the order of hundreds of milliseconds).

ref: #7621
This commit is contained in:
toofar 2023-03-18 13:25:11 +13:00
parent 2b67070d16
commit d413b87c3f
6 changed files with 6 additions and 0 deletions

View File

@ -6,6 +6,7 @@
<title>Hinting inside an iframe</title>
</head>
<body>
<p>Some text.</p>
<iframe style="margin: 50px;" src="/data/hints/html/wrapped.html"></iframe>
</body>
</html>

View File

@ -6,6 +6,7 @@
<title>Hinting a button inside an iframe</title>
</head>
<body>
<p>Some text.</p>
<iframe style="margin: 50px;" src="/data/hints/html/wrapped_button.html"></iframe>
</body>
</html>

View File

@ -6,6 +6,7 @@
<title>Scrolling inside an iframe</title>
</head>
<body>
<p>Some text.</p>
<iframe style="margin: 50px;" src="/data/scroll/simple.html"></iframe>
</body>
</html>

View File

@ -14,6 +14,7 @@
</script>
</head>
<body onload="setup_event_listener()">
<p>Some text.</p>
<input id="qute-input-autofocus" type="text" autofocus value=""/>
<input id="qute-input-disabled" disabled="disabled" href="#"/>
</body>

View File

@ -14,6 +14,7 @@
</script>
</head>
<body onload="setup_event_listener()">
<p>Some text.</p>
<input id="qute-input" type="text" value=""/>
</body>
</html>

View File

@ -13,6 +13,7 @@
</script>
</head>
<body onload="setup_event_listener()">
<p>Some text.</p>
<textarea id="qute-textarea"></textarea>
</body>
</html>