OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2013 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 // Tests an invalid IDL file. | |
6 | |
7 namespace test { | |
8 /* Unexpected symbol DOMString afte symbol a. */ | |
not at google - send to devlin
2013/09/09 16:14:07
s/afte/after/
Haojian Wu
2013/09/10 02:51:04
Done.
| |
9 dictionary MissingSemicolon { | |
10 DOMString a | |
11 DOMString b; | |
12 }; | |
13 }; | |
14 | |
not at google - send to devlin
2013/09/09 16:14:07
no \n
Haojian Wu
2013/09/10 02:51:04
Done.
| |
OLD | NEW |