OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 [ | |
6 ] interface OriginTrialsTest { | |
haraken
2016/09/16 13:48:46
Remove the empty []. (foolip@ is landing a change
iclelland
2016/09/16 14:38:42
Thanks, done! I saw that this morning when I tried
| |
7 [OriginTrialEnabled=OriginTrialsSampleAPI] readonly attribute boolean normal Attribute; | |
8 [OriginTrialEnabled=OriginTrialsSampleAPI] static readonly attribute boolean staticAttribute; | |
9 [CallWith=ScriptState, RaisesException] readonly attribute boolean throwingA ttribute; | |
chasej
2016/09/16 15:17:02
Nit: Maybe add a comment explaining that this thro
iclelland
2016/09/16 15:59:47
Done.
| |
10 readonly attribute boolean unconditionalAttribute; | |
11 [OriginTrialEnabled=OriginTrialsSampleAPI, ImplementedAs=unconditionalAttrib ute] readonly attribute boolean bindingsTest; | |
12 [OriginTrialEnabled=OriginTrialsSampleAPI] const unsigned short CONSTANT = 1 ; | |
13 }; | |
OLD | NEW |