chromium/ios/testing/data/http_server_files/console_with_iframe.html

<!DOCTYPE html>
<!--
Copyright 2019 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->

<!--
This file contains buttons which send log messages to the JavaScript console.
-->

<html>
<body>

<button id="debug" onclick="console.debug('This is a debug message.')">Debug</button>
<button id="error" onclick="console.error('This is an error message.')">Error</button>
<button id="info" onclick="console.info('This is an informative message.')">Info</button>
<button id="log" onclick="console.log('This log is very round.')">Log</button>
<button id="warn" onclick="console.warn('This is a warning message.')">Warn</button>

<iframe src="console.html"></iframe>

</body>
</html>