Pop-up dictionary browser extension for language learning. Successor to Yomichan. (PERSONAL FORK)
at lambda-fork/main 33 lines 1.2 kB view raw
1<!DOCTYPE html> 2<html> 3<head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width,initial-scale=1"> 6 <title>Performance Tests</title> 7 <link rel="stylesheet" href="test-stylesheet.css"> 8 <script src="js/html-test-utilities.js"></script> 9 <script src="js/performance-frames.js"></script> 10</head> 11<body><div class="content"> 12 13 <test-description>&lt;iframe&gt; element inside of an open shadow DOM.</test-description> 14 15 <div id="shadow-iframe-container-open"></div> 16 <template id="shadow-iframe-container-open-content-template"> 17 <iframe src="popup-tests-frame1.html" allowfullscreen="true" style="width: 100%; height: 50px; border: 1px solid #d8d8d8;"></iframe> 18 </template> 19 20 <test-description>Add elements</test-description> 21 22 <div> 23 <a href="#" class="add-elements" data-count="1000">1000</a> 24 <a href="#" class="add-elements" data-count="10000">10000</a> 25 <a href="#" class="add-elements" data-count="100000">100000</a> 26 <a href="#" class="add-elements" data-count="1000000">1000000</a> 27 </div> 28 29 <div id="counter"></div> 30 <div id="container"></div> 31 32</div></body> 33</html>