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

Unified Diff: third_party/WebKit/Source/web/tests/WebViewTest.cpp

Issue 2508793002: Make exceptionState parameter of Document::createElement() to have default value (Closed)
Patch Set: 2016-11-16T15:26:06 Created 4 years, 1 month 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/input/EventHandlerTest.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/web/tests/WebViewTest.cpp
diff --git a/third_party/WebKit/Source/web/tests/WebViewTest.cpp b/third_party/WebKit/Source/web/tests/WebViewTest.cpp
index 5d8f627f55f1b5adbaec1328f78c49de5742fe51..3240966d898bafd2d579b4dbd84fa9b1a1bc8f07 100644
--- a/third_party/WebKit/Source/web/tests/WebViewTest.cpp
+++ b/third_party/WebKit/Source/web/tests/WebViewTest.cpp
@@ -919,7 +919,7 @@ TEST_P(WebViewTest, FinishComposingTextDoesNotAssert) {
// Do arbitrary change to make layout dirty.
Document& document = *webView->mainFrameImpl()->frame()->document();
- Element* br = document.createElement("br", ASSERT_NO_EXCEPTION);
+ Element* br = document.createElement("br");
document.body()->appendChild(br);
// Should not hit assertion when calling
« no previous file with comments | « third_party/WebKit/Source/core/input/EventHandlerTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698