mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 21:28:04 +02:00
14 lines
434 B
HTML
14 lines
434 B
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>test chat window</title>
|
|
</head>
|
|
<body>
|
|
<p>This is a test chat window.</p>
|
|
<!-- a couple of input fields to help with focus testing -->
|
|
<input id="input1"/>
|
|
<input id="input2"/>
|
|
<!-- an iframe here so this one page generates multiple load events -->
|
|
<iframe id="iframe" src="data:text/plain:this is an iframe"></iframe>
|
|
</body>
|
|
</html>
|