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

Unified Diff: LayoutTests/imported/web-platform-tests/custom-elements/resources/register-and-create-custom-element.html

Issue 1211973013: update-w3c-deps import using blink d42488bb63a5ac7fd6befd40a9b90fe85cebcc4a: (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add flaky/timeout to TestExpectations Created 5 years, 5 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: LayoutTests/imported/web-platform-tests/custom-elements/resources/register-and-create-custom-element.html
diff --git a/LayoutTests/imported/web-platform-tests/custom-elements/resources/register-and-create-custom-element.html b/LayoutTests/imported/web-platform-tests/custom-elements/resources/register-and-create-custom-element.html
index c128cbf413c5c2ffdd7a7233a5fc73d4db759da8..3aabff244855cec72162af84ef7188699ed2a9c1 100644
--- a/LayoutTests/imported/web-platform-tests/custom-elements/resources/register-and-create-custom-element.html
+++ b/LayoutTests/imported/web-platform-tests/custom-elements/resources/register-and-create-custom-element.html
@@ -10,7 +10,7 @@
<script>
var proto = Object.create(HTMLElement.prototype);
proto.createdCallback = function() {
- document.querySelector('#log').innerText = 'Created callback was called';
+ document.querySelector('#log').textContent = 'Created callback was called';
};
document.registerElement('x-element', {prototype: proto});
</script>

Powered by Google App Engine
This is Rietveld 408576698