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

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementRegistryTest.cpp

Issue 2443543002: createElement should not transmit exceptions but report them. (Closed)
Patch Set: Created 4 years, 2 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/Source/core/dom/custom/CustomElementRegistryTest.cpp
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementRegistryTest.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementRegistryTest.cpp
index 55aaac375be3d92a80249114edb7d56865822492..00c17136bac1dc23c46fa301fc41c330d8554244 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementRegistryTest.cpp
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementRegistryTest.cpp
@@ -186,12 +186,6 @@ class TestCustomElementDefinition : public CustomElementDefinition {
HTMLElement* createElementSync(Document&, const QualifiedName&) override {
return nullptr;
}
-
- HTMLElement* createElementSync(Document&,
- const QualifiedName&,
- ExceptionState&) override {
- return nullptr;
- }
};
// Classes which use trace macros cannot be local because of the

Powered by Google App Engine
This is Rietveld 408576698