- a
- b
- c 1.1.1. d
- AA 1.1. AA1 1.1. AA2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @import url(/viller239/bce40e93cdb2e58857a7b9b1b861ce20/raw/6bb0f7474e9605086228e97e0ef18099c48de074/styleA.css) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export default class AutoCleaningMap { | |
| constructor(ttl = 5000) { | |
| this.oldMap = new Map(); | |
| this.map = new Map(); | |
| this.cleanupInt = setInterval(() => { | |
| this.oldMap = this.map; | |
| this.map = new Map(); | |
| }, ttl); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| h3 { color: blue; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @import url("https://rawgit.com/viller239/b2e86aa679af87285fabd53c6419cc2b/raw/eb6729442a1087190e3ad12184731787527a569c/sheetC.css"); | |
| h2 { color: red; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <link rel="stylesheet" type="text/css" href="https://rawgit.com/viller239/32927627da771b7fa4f46997f40203dd/raw/14e80a1d4c688eb1fd787fe3b8cf17d8e22842d7/sheetB.css"/> | |
| </head> | |
| <body> | |
| <h2> red </h2> | |
| <h3> blue </h3> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const foo = /123/**100**/345/; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <script> | |
| window.location.href = '/'; | |
| </script> | |
| <noscript> | |
| <meta http-equiv="refresh" content="0;url=/"> | |
| </noscript> | |
| </head> | |
| <body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #a { color: red; } |