Index: third_party/WebKit/LayoutTests/custom-elements/spec/custom-elements-registry/get.html |
diff --git a/third_party/WebKit/LayoutTests/custom-elements/spec/custom-elements-registry/get.html b/third_party/WebKit/LayoutTests/custom-elements/spec/custom-elements-registry/get.html |
index da310db308dea24ae654b3e9e898b6f2384b5911..9d1b60df5e314f82f61e3ed2b93501d66c96cbad 100644 |
--- a/third_party/WebKit/LayoutTests/custom-elements/spec/custom-elements-registry/get.html |
+++ b/third_party/WebKit/LayoutTests/custom-elements/spec/custom-elements-registry/get.html |
@@ -3,7 +3,7 @@ |
TODO(yosin): We should upstream to wpt test. |
This file is taken from https://github.com/kojiishi/web-platform-tests/blob/53908d773012edf931047674f7afe3975bc1820f/custom-elements/custom-elements-registry/get.html |
--> |
-<title>Custom Elements: CustomElementsRegistry.get</title> |
+<title>Custom Elements: CustomElementRegistry.get</title> |
<script src="../../../resources/testharness.js"></script> |
<script src="../../../resources/testharnessreport.js"></script> |
<body> |
@@ -11,7 +11,7 @@ This file is taken from https://github.com/kojiishi/web-platform-tests/blob/5390 |
<script> |
'use strict'; |
(() => { |
- // https://html.spec.whatwg.org/multipage/scripting.html#dom-customelementsregistry-whendefined |
+ // https://html.spec.whatwg.org/multipage/scripting.html#dom-customelementregistry-whendefined |
// Use window from iframe to isolate the test. |
function setup() { |
const iframe = document.createElement('iframe'); |
@@ -27,7 +27,7 @@ This file is taken from https://github.com/kojiishi/web-platform-tests/blob/5390 |
promise_test(() => setup() |
.then(customElements => { |
- // 1. If this CustomElementsRegistry contains an entry with name name, |
+ // 1. If this CustomElementRegistry contains an entry with name name, |
// then return that entry's constructor. |
const name = 'test-get-existing'; |
class C extends HTMLElement {}; |