summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/events/security_policy_violation_event_init.idl
blob: 1a4efec8efea64478c6d85a910df6687ba4dfd70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// https://w3c.github.io/webappsec-csp/#idl-index

dictionary SecurityPolicyViolationEventInit : EventInit {
              // TODO(foolip): The spec says "USVString documentURL".
    required  DOMString documentURI;
              // TODO(foolip): The spec says USVString.
              DOMString referrer;
              // TODO(foolip): The spec says "USVString blockedURL".
              DOMString blockedURI = "";
    required  DOMString effectiveDirective;
    required  DOMString originalPolicy;
              // TODO(foolip): The spec says USVString.
              DOMString sourceFile = "";
              DOMString sample;
    required  SecurityPolicyViolationEventDisposition disposition;
    required  unsigned short statusCode;
              // TODO(foolip): The spec says "unsigned long lineno"
              long      lineNumber = 0;
              // TODO(foolip): The spec says "unsigned long colno"
              long      columnNumber = 0;

    required  DOMString violatedDirective;
};