mirror of
https://github.com/servo/servo.git
synced 2025-08-12 08:55:32 +01:00
Update web-platform-tests to revision 58eb04cecbbec2e18531ab440225e38944a9c444
This commit is contained in:
parent
25e8bf69e6
commit
665817d2a6
35333 changed files with 1818077 additions and 16036 deletions
|
@ -0,0 +1,23 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Console Count - Logging Manual Test</title>
|
||||
<meta name="author" title="Dominic Farolino" href="mailto:domfarolino@gmail.com">
|
||||
<meta name="assert" content="Console count method default parameter should work">
|
||||
<link rel="help" href="https://console.spec.whatwg.org/#count">
|
||||
</head>
|
||||
<body>
|
||||
<p>Open the console inside the developer tools. It should contain four lines whose contents are:</p>
|
||||
<p><code>default: 1</code></p>
|
||||
<p><code>default: 2</code></p>
|
||||
<p><code>default: 3</code></p>
|
||||
<p><code>default: 4</code></p>
|
||||
|
||||
<script>
|
||||
console.count();
|
||||
console.count(undefined);
|
||||
console.count("default");
|
||||
console.count({toString() {return "default"}});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue