blob: f341578805cee1ab4aa1469d00cd667340406085 [file] [log] [blame]
// Copyright 2016 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.
// Test for [RuntimeEnabled] extended attribute referencing an origin trial
// applied to a partial interface.
[
ImplementedAs=TestInterfacePartial4,
RuntimeEnabled=OriginTrialPartialFeature,
SecureContext
] partial interface TestInterface {
const unsigned short PARTIAL4_UNSIGNED_SHORT = 4;
attribute long partial4LongAttribute;
static attribute long partial4StaticLongAttribute;
void partial4VoidMethod();
static void partial4StaticVoidMethod();
};