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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/constructors/security-policy-violation-event-constructor-expected.txt

Issue 2421473004: CSP: Fire 'SecurityPolicyViolation' on the offending element. (Closed)
Patch Set: Test. 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/LayoutTests/fast/events/constructors/security-policy-violation-event-constructor-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/events/constructors/security-policy-violation-event-constructor-expected.txt b/third_party/WebKit/LayoutTests/fast/events/constructors/security-policy-violation-event-constructor-expected.txt
index c824a64b99b6575b6660a08b2302d73e51fbe41a..ffef2bfdbb5cd2bc716ccb0c5c066d6db4021a87 100644
--- a/third_party/WebKit/LayoutTests/fast/events/constructors/security-policy-violation-event-constructor-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/events/constructors/security-policy-violation-event-constructor-expected.txt
@@ -3,7 +3,7 @@ This tests the constructor for the SecurityPolicyViolationEvent DOM class.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-PASS new SecurityPolicyViolationEvent('eventType').bubbles is false
+PASS new SecurityPolicyViolationEvent('eventType').bubbles is true
PASS new SecurityPolicyViolationEvent('eventType').cancelable is false
PASS new SecurityPolicyViolationEvent('eventType').documentURI is ""
PASS new SecurityPolicyViolationEvent('eventType').referrer is ""
@@ -16,10 +16,10 @@ PASS new SecurityPolicyViolationEvent('eventType').disposition is "enforce"
PASS new SecurityPolicyViolationEvent('eventType').lineNumber is 0
PASS new SecurityPolicyViolationEvent('eventType').columnNumber is 0
PASS new SecurityPolicyViolationEvent('eventType').statusCode is 0
-PASS new SecurityPolicyViolationEvent('eventType', { bubbles: false }).bubbles is false
+PASS new SecurityPolicyViolationEvent('eventType', { bubbles: false }).bubbles is true
PASS new SecurityPolicyViolationEvent('eventType', { bubbles: true }).bubbles is true
PASS new SecurityPolicyViolationEvent('eventType', { cancelable: false }).cancelable is false
-PASS new SecurityPolicyViolationEvent('eventType', { cancelable: true }).cancelable is true
+PASS new SecurityPolicyViolationEvent('eventType', { cancelable: true }).cancelable is false
PASS new SecurityPolicyViolationEvent('eventType', { documentURI: 'foo' }).documentURI is "foo"
PASS new SecurityPolicyViolationEvent('eventType', { referrer: 'foo' }).referrer is "foo"
PASS new SecurityPolicyViolationEvent('eventType', { blockedURI: 'foo' }).blockedURI is "foo"

Powered by Google App Engine
This is Rietveld 408576698