Diff
Modified: trunk/LayoutTests/ChangeLog (225006 => 225007)
--- trunk/LayoutTests/ChangeLog 2017-11-18 01:27:23 UTC (rev 225006)
+++ trunk/LayoutTests/ChangeLog 2017-11-18 01:57:57 UTC (rev 225007)
@@ -1,3 +1,17 @@
+2017-11-17 Joseph Pecoraro <[email protected]>
+
+ Web Inspector: Fix grammar typo in tests
+ https://bugs.webkit.org/show_bug.cgi?id=179852
+
+ Reviewed by Matt Baker.
+
+ * http/tests/inspector/network/resource-response-source-memory-cache-expected.txt:
+ * http/tests/inspector/network/resource-response-source-memory-cache-revalidate-expired-only-expected.txt:
+ * http/tests/inspector/network/resource-response-source-memory-cache-revalidate-expired-only.html:
+ * http/tests/inspector/network/resource-response-source-memory-cache.html:
+ * http/tests/inspector/network/set-resource-caching-disabled-memory-cache-expected.txt:
+ * http/tests/inspector/network/set-resource-caching-disabled-memory-cache.html:
+
2017-11-17 John Wilander <[email protected]>
Storage Access API: UI process should update network process about granted access
Modified: trunk/LayoutTests/http/tests/inspector/network/resource-response-source-memory-cache-expected.txt (225006 => 225007)
--- trunk/LayoutTests/http/tests/inspector/network/resource-response-source-memory-cache-expected.txt 2017-11-18 01:27:23 UTC (rev 225006)
+++ trunk/LayoutTests/http/tests/inspector/network/resource-response-source-memory-cache-expected.txt 2017-11-18 01:57:57 UTC (rev 225007)
@@ -3,7 +3,7 @@
== Running test suite: Resource.ResponseSource.MemoryCache
-- Running test case: Resource.ResponseSource.MemoryCache
-PASS: Resource should be exist.
+PASS: Resource should exist.
PASS: statusCode should be 200
PASS: responseSource should be Symbol(memory-cache)
Modified: trunk/LayoutTests/http/tests/inspector/network/resource-response-source-memory-cache-revalidate-expired-only-expected.txt (225006 => 225007)
--- trunk/LayoutTests/http/tests/inspector/network/resource-response-source-memory-cache-revalidate-expired-only-expected.txt 2017-11-18 01:27:23 UTC (rev 225006)
+++ trunk/LayoutTests/http/tests/inspector/network/resource-response-source-memory-cache-revalidate-expired-only-expected.txt 2017-11-18 01:57:57 UTC (rev 225007)
@@ -3,7 +3,7 @@
== Running test suite: Resource.ResponseSource.MemoryCache
-- Running test case: Resource.ResponseSource.MemoryCache
-PASS: Resource should be exist.
+PASS: Resource should exist.
PASS: statusCode should be 304
PASS: responseSource should be Symbol(memory-cache)
Modified: trunk/LayoutTests/http/tests/inspector/network/resource-response-source-memory-cache-revalidate-expired-only.html (225006 => 225007)
--- trunk/LayoutTests/http/tests/inspector/network/resource-response-source-memory-cache-revalidate-expired-only.html 2017-11-18 01:27:23 UTC (rev 225006)
+++ trunk/LayoutTests/http/tests/inspector/network/resource-response-source-memory-cache-revalidate-expired-only.html 2017-11-18 01:57:57 UTC (rev 225007)
@@ -29,7 +29,7 @@
reject();
return;
}
- InspectorTest.expectThat(resource instanceof WI.Resource, "Resource should be exist.");
+ InspectorTest.expectThat(resource instanceof WI.Resource, "Resource should exist.");
InspectorTest.expectEqual(resource.statusCode, statusCode, `statusCode should be ${statusCode}`);
InspectorTest.expectEqual(resource.responseSource, responseSource, `responseSource should be ${String(responseSource)}`);
}).then(resolve, reject);
Modified: trunk/LayoutTests/http/tests/inspector/network/resource-response-source-memory-cache.html (225006 => 225007)
--- trunk/LayoutTests/http/tests/inspector/network/resource-response-source-memory-cache.html 2017-11-18 01:27:23 UTC (rev 225006)
+++ trunk/LayoutTests/http/tests/inspector/network/resource-response-source-memory-cache.html 2017-11-18 01:57:57 UTC (rev 225007)
@@ -29,7 +29,7 @@
reject();
return;
}
- InspectorTest.expectThat(resource instanceof WI.Resource, "Resource should be exist.");
+ InspectorTest.expectThat(resource instanceof WI.Resource, "Resource should exist.");
InspectorTest.expectEqual(resource.statusCode, statusCode, `statusCode should be ${statusCode}`);
InspectorTest.expectEqual(resource.responseSource, responseSource, `responseSource should be ${String(responseSource)}`);
}).then(resolve, reject);
Modified: trunk/LayoutTests/http/tests/inspector/network/set-resource-caching-disabled-memory-cache-expected.txt (225006 => 225007)
--- trunk/LayoutTests/http/tests/inspector/network/set-resource-caching-disabled-memory-cache-expected.txt 2017-11-18 01:27:23 UTC (rev 225006)
+++ trunk/LayoutTests/http/tests/inspector/network/set-resource-caching-disabled-memory-cache-expected.txt 2017-11-18 01:57:57 UTC (rev 225007)
@@ -4,7 +4,7 @@
== Running test suite: Network.SetResourceCachingDisabled.MemoryCache
-- Running test setup.
-- Running test case: Network.SetResourceCachingDisabled.MemoryCache
-PASS: Resource should be exist.
+PASS: Resource should exist.
PASS: statusCode should be 200
PASS: responseSource should be Symbol(network)
Modified: trunk/LayoutTests/http/tests/inspector/network/set-resource-caching-disabled-memory-cache.html (225006 => 225007)
--- trunk/LayoutTests/http/tests/inspector/network/set-resource-caching-disabled-memory-cache.html 2017-11-18 01:27:23 UTC (rev 225006)
+++ trunk/LayoutTests/http/tests/inspector/network/set-resource-caching-disabled-memory-cache.html 2017-11-18 01:57:57 UTC (rev 225007)
@@ -32,7 +32,7 @@
reject();
return;
}
- InspectorTest.expectThat(resource instanceof WI.Resource, "Resource should be exist.");
+ InspectorTest.expectThat(resource instanceof WI.Resource, "Resource should exist.");
InspectorTest.expectEqual(resource.statusCode, statusCode, `statusCode should be ${statusCode}`);
InspectorTest.expectEqual(resource.responseSource, responseSource, `responseSource should be ${String(responseSource)}`);
}).then(resolve, reject);