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

Side by Side Diff: core/events/SecurityPolicyViolationEvent.idl

Issue 2786203002: Roll 50: Copied IDLs, PYTHON scripts from WebKit removed deleted files in WebCore (Closed)
Patch Set: Created 3 years, 8 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 18 matching lines...) Expand all
29 ] interface SecurityPolicyViolationEvent : Event { 29 ] interface SecurityPolicyViolationEvent : Event {
30 // TODO(philipj): The spec says "documentURL". 30 // TODO(philipj): The spec says "documentURL".
31 [Measure] readonly attribute DOMString documentURI; 31 [Measure] readonly attribute DOMString documentURI;
32 readonly attribute DOMString referrer; 32 readonly attribute DOMString referrer;
33 // TODO(philipj): The spec says "blockedURL". 33 // TODO(philipj): The spec says "blockedURL".
34 [Measure] readonly attribute DOMString blockedURI; 34 [Measure] readonly attribute DOMString blockedURI;
35 readonly attribute DOMString violatedDirective; 35 readonly attribute DOMString violatedDirective;
36 readonly attribute DOMString effectiveDirective; 36 readonly attribute DOMString effectiveDirective;
37 readonly attribute DOMString originalPolicy; 37 readonly attribute DOMString originalPolicy;
38 readonly attribute DOMString sourceFile; 38 readonly attribute DOMString sourceFile;
39 // FIXME: The spec says "statusCode" is a DOMString. 39 [Measure] readonly attribute unsigned short statusCode;
40 [Measure] readonly attribute long statusCode;
41 readonly attribute long lineNumber; 40 readonly attribute long lineNumber;
42 readonly attribute long columnNumber; 41 readonly attribute long columnNumber;
43 }; 42 };
OLDNEW
« no previous file with comments | « core/events/PromiseRejectionEventInit.idl ('k') | core/events/SecurityPolicyViolationEventInit.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698