chromium/third_party/blink/web_tests/external/wpt/html/semantics/document-metadata/the-style-element/style_load_event.html

<!DOCTYPE html>
<title>HTML Test: The style load event should fire when textContent is changed</title>
<link rel="author" href="mailto:[email protected]">
<link rel="help" href="https://html.spec.whatwg.org/multipage/semantics.html#update-a-style-block">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<script>
  var loadCount = 0;
  function load() { loadCount++; }
</script>

<style id=target onload="load()">
  .box { color:red; }
</style>
<div class='box'>Box</div>

<script>
window.onload = () => {
  const target = document.getElementById('target');
  promise_test(async t => {
    assert_equals(loadCount,1,"Style element should have loaded once by now");
    target.textContent = `.box { color: green; }`;
    await new Promise(resolve => target.addEventListener('load', resolve));
    assert_equals(loadCount,2,"Style element should fire the load event when textContent changes");
  },"style load event should fire when textContent changed");
};
</script>