mirror of
https://github.com/servo/servo.git
synced 2025-08-10 07:55:33 +01:00
Update web-platform-tests to revision c0fbd59769588391d78838086bd02ad394301655
This commit is contained in:
parent
a07c718895
commit
a3df7c3a3c
105 changed files with 1922 additions and 1186 deletions
|
@ -0,0 +1,23 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Console String Format Specifier on Symbols</title>
|
||||
<meta name="author" title="Dominic Farolino" href="mailto:domfarolino@gmail.com">
|
||||
<meta name="assert" content="Console format specifiers on Symbols">
|
||||
<link rel="help" href="https://console.spec.whatwg.org/#formatter">
|
||||
</head>
|
||||
<body>
|
||||
<p>Open the console inside the developer tools. It should contain five lines, each of which are:</p>
|
||||
<p><code>Symbol(description)</code></p>
|
||||
|
||||
<script>
|
||||
console.log("%s", Symbol.for("description"));
|
||||
console.dirxml("%s", Symbol.for("description"));
|
||||
console.trace("%s", Symbol.for("description"));
|
||||
console.group("%s", Symbol.for("description"));
|
||||
console.groupEnd();
|
||||
console.groupCollapsed("%s", Symbol.for("description"));
|
||||
console.groupEnd();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue