Fix custom element registry define test

The test relies on DOM elements with ids beind added
as properties of the window. Servo does not do this, and
this is not a best practice.
This commit is contained in:
Connor Brewster 2017-05-30 15:21:33 -06:00
parent e21e64a33c
commit 1800da779c
2 changed files with 2 additions and 1 deletions

View file

@ -12,6 +12,7 @@
// https://html.spec.whatwg.org/multipage/scripting.html#element-definition
// Use window from iframe to isolate the test.
const iframe = document.getElementById("iframe");
const testWindow = iframe.contentDocument.defaultView;
const customElements = testWindow.customElements;