chromium/third_party/blink/web_tests/external/wpt/css/css-shadow-parts/simple-important-inline.html

<!DOCTYPE html>
<html>
  <head>
    <title>CSS Shadow Parts - Simple Important Inline</title>
    <meta href="mailto:[email protected]" rel="author" title="Fergal Daly">
    <link href="http://www.google.com/" rel="author" title="Google">
    <link href="https://drafts.csswg.org/css-shadow-parts/" rel="help">
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <script src="support/shadow-helper.js"></script>
  </head>
  <body>
    <style>#c-e::part(partp) { color: red; }</style>
    <script>installCustomElement("custom-element", "custom-element-template");</script>
    <template id="custom-element-template">
      <span id="part" part="partp" style="color: green !important">This text</span>
    </template>
    The following text should be red:
    <custom-element id="c-e"></custom-element>
    <script>
      "use strict";
      const colorGreen = "rgb(0, 128, 0)";
      test(function() {
        const el = getElementByShadowIds(document, ["c-e", "part"]);
        assert_equals(window.getComputedStyle(el).color, colorGreen);
      }, "Part in selected host is not styled");
    </script>
  </body>
</html>