diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-12-20 00:31:45 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-20 05:31:45 +0000 |
commit | 0a0994ca64fceafde05997d93e5ca7d6e5baa7b2 (patch) | |
tree | c876ddcf63171ff1121f1e46799c2515e63ad370 /test/data/html/performance-frame2.html | |
parent | 3c226215419ca815712e9568f7d871a96f5ff1cf (diff) |
HTML test updates (#398)
* Rename y-test to test-case
* Rename y-description to test-description
* Remove extension name
* Update placeholder favicon
* Refactor scripts
* Make element types more consistent
* More updates
* Rename
* Simplify file URLs
* Rename file
* Add descriptions
* Rename
* Rename
* Rename
Diffstat (limited to 'test/data/html/performance-frame2.html')
-rw-r--r-- | test/data/html/performance-frame2.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/test/data/html/performance-frame2.html b/test/data/html/performance-frame2.html new file mode 100644 index 00000000..eb7d758b --- /dev/null +++ b/test/data/html/performance-frame2.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width,initial-scale=1"> + <title>Performance Tests</title> + <link rel="stylesheet" href="test-stylesheet.css"> + <script src="js/html-test-utilities.js"></script> + <script src="js/performance-frames.js"></script> +</head> +<body><div class="content"> + + <test-description><iframe> element inside of an open shadow DOM.</test-description> + + <div id="shadow-iframe-container-open"></div> + <template id="shadow-iframe-container-open-content-template"> + <iframe src="popup-tests-frame1.html" allowfullscreen="true" style="width: 100%; height: 50px; border: 1px solid #d8d8d8;"></iframe> + </template> + + <test-description>Add elements</test-description> + + <div> + <a href="#" class="add-elements" data-count="1000">1000</a> + <a href="#" class="add-elements" data-count="10000">10000</a> + <a href="#" class="add-elements" data-count="100000">100000</a> + <a href="#" class="add-elements" data-count="1000000">1000000</a> + </div> + + <div id="counter"></div> + <div id="container"></div> + +</div></body> +</html> |