Chromium Code Reviews| Index: third_party/WebKit/Source/modules/indexeddb/IDBRequestTest.cpp |
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBRequestTest.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBRequestTest.cpp |
| index 48509a0138d97d9dd1fd474bee534ff02ef84362..37a4dba64d1f6bf6a9ddeac43d830565552e45af 100644 |
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBRequestTest.cpp |
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBRequestTest.cpp |
| @@ -76,11 +76,12 @@ TEST(IDBRequestTest, AbortErrorAfterAbort) { |
| scope.getScriptState(), IDBAny::createUndefined(), transaction); |
| EXPECT_EQ(request->readyState(), "pending"); |
| - // Simulate the IDBTransaction having received onAbort from back end and aborting the request: |
| + // Simulate the IDBTransaction having received onAbort from back end and |
| + // aborting the request: |
| request->abort(); |
| - // Now simulate the back end having fired an abort error at the request to clear up any intermediaries. |
| - // Ensure an assertion is not raised. |
| + // Now simulate the back end having fired an abort error at the request to |
| + // clear up any intermediaries. Ensure an assertion is not raised. |
|
jsbell
2016/10/04 20:10:30
An other double space after '.'
|
| request->onError(DOMException::create(AbortError, "Description goes here.")); |
| // Stop the request lest it be GCed and its destructor |