summaryrefslogtreecommitdiffstats
path: root/testing/talos/talos/tests/perf-reftest-singletons/attr-selector-1.html
blob: 46fe9b6d0a04d54f5e52da1df842d0437e7e5b8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<body>
<script src="util.js"></script>
<script>
window.onload = function() {
  document.body.appendChild(build_dom(10000, "div", { attributes: { "data-x": "https://example.com/b/abcdefghijklmnopqrstuvwxyz" } }));
  flush_layout(document.body);
  document.head.appendChild(build_rule("[data-x^='https://example.com/a']", 500, "{}"));
  document.head.appendChild(build_rule("[data-x$='abcdefghijklmnopqrstuvwxy.']", 500, "{}"));
  document.head.appendChild(build_rule("[data-x*='abcdefghijklmnopqrstuvwxy.']", 500, "{}"));
  perf_start();
  flush_style(document.body.lastChild);
  perf_finish();
};
</script>