Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(662)

Unified Diff: third_party/WebKit/LayoutTests/custom-elements/spec/custom-elements-registry/when_defined.html

Issue 2277713002: Rename CustomElementsRegistry to CustomElementRegistry (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/custom-elements/spec/custom-elements-registry/when_defined.html
diff --git a/third_party/WebKit/LayoutTests/custom-elements/spec/custom-elements-registry/when_defined.html b/third_party/WebKit/LayoutTests/custom-elements/spec/custom-elements-registry/when_defined.html
index 649c33907fb5f689363c74cc6d9a475579aad711..fa6a4bab1aa2c37995e4cc23648764a7d72bcf0b 100644
--- a/third_party/WebKit/LayoutTests/custom-elements/spec/custom-elements-registry/when_defined.html
+++ b/third_party/WebKit/LayoutTests/custom-elements/spec/custom-elements-registry/when_defined.html
@@ -1,5 +1,5 @@
<!DOCTYPE html>
-<title>Custom Elements: CustomElementsRegistry.whenDefined</title>
+<title>Custom Elements: CustomElementRegistry.whenDefined</title>
<script src="../../../resources/testharness.js"></script>
<script src="../../../resources/testharnessreport.js"></script>
<script src="../resources/custom-elements-helpers.js"></script>
@@ -8,7 +8,7 @@
<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');
@@ -43,7 +43,7 @@
assert_not_equals(promiseBeforeDefined, promiseNotDefined,
'whenDefined() returns different promises for different names.');
customElements.define(kNameToBeDefined, class {});
- // 3. If this CustomElementsRegistry contains an entry with name name,
+ // 3. If this CustomElementRegistry contains an entry with name name,
// then return a new promise resolved with undefined and abort these
// steps.
const promiseAfterDefined = customElements.whenDefined(kNameToBeDefined);

Powered by Google App Engine
This is Rietveld 408576698