Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-shadow-parts/idlharness.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<title>CSS Shadow Parts IDL tests</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/WebIDLParser.js"></script>
<script src="/resources/idlharness.js"></script>
<script>
idl_test(
  ['css-shadow-parts'],
  ['dom'],
  idl_array => {
    self.element = document.createElementNS('ns', 'e');
    self.htmlElement = document.createElement('html');
    idl_array.add_objects({
      Element: ['element', 'htmlElement', 'svgElement'],
    });
  }
);
</script>