chromium/third_party/blink/renderer/core/events/security_policy_violation_event_init.idl

// Copyright 2014 The Chromium Authors
// 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".
    DOMString documentURI = "";
    // TODO(foolip): The spec says USVString.
    DOMString referrer = "";
    // TODO(foolip): The spec says "USVString blockedURL".
    DOMString blockedURI = "";
    DOMString effectiveDirective = "";
    DOMString originalPolicy = "";
    // TODO(foolip): The spec says USVString.
    DOMString sourceFile = "";
    DOMString sample = "";
    SecurityPolicyViolationEventDisposition disposition = "enforce";
    unsigned short statusCode = 0;
    // TODO(foolip): The spec says "unsigned long lineno"
    long lineNumber = 0;
    // TODO(foolip): The spec says "unsigned long colno"
    long columnNumber = 0;

    DOMString violatedDirective = "";
};