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

Unified Diff: third_party/WebKit/Source/core/origin_trials/OriginTrialContextTest.cpp

Issue 1756193002: Extract trial tokens using <meta http-equiv> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change header name to singular 'origin-trial' Created 4 years, 10 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
« no previous file with comments | « third_party/WebKit/Source/core/origin_trials/OriginTrialContext.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/origin_trials/OriginTrialContextTest.cpp
diff --git a/third_party/WebKit/Source/core/origin_trials/OriginTrialContextTest.cpp b/third_party/WebKit/Source/core/origin_trials/OriginTrialContextTest.cpp
index 25c886569435136ce333cc7018bb7ad8228f08cd..646435128ddfc0819296645e7107c27c73f24e8a 100644
--- a/third_party/WebKit/Source/core/origin_trials/OriginTrialContextTest.cpp
+++ b/third_party/WebKit/Source/core/origin_trials/OriginTrialContextTest.cpp
@@ -124,7 +124,7 @@ protected:
ASSERT_TRUE(head);
RefPtrWillBeRawPtr<HTMLMetaElement> meta = HTMLMetaElement::create(document());
- meta->setAttribute(HTMLNames::nameAttr, "origin-trials");
+ meta->setAttribute(HTMLNames::http_equivAttr, "origin-trial");
AtomicString value(token);
meta->setAttribute(HTMLNames::contentAttr, value);
head->appendChild(meta.release());
« no previous file with comments | « third_party/WebKit/Source/core/origin_trials/OriginTrialContext.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698