Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be found | |
| 3 // in the LICENSE file. | |
| 4 | |
| 5 #ifndef WebTreeScopeType_h | |
| 6 #define WebTreeScopeType_h | |
| 7 | |
| 8 namespace blink { | |
| 9 | |
| 10 // Indicates if an item is in the document tree or in a shadow tree, per | |
| 11 // the Shadow DOM spec at http://www.w3.org/TR/shadow-dom/#shadow-trees. | |
|
hayato
2015/05/18 05:08:50
Could you refer to the editor's draft, http://w3c.
dcheng
2015/05/18 05:19:14
Done.
| |
| 12 enum class WebTreeScopeType { | |
| 13 Document, | |
| 14 Shadow, | |
| 15 Last = Shadow, | |
| 16 }; | |
| 17 | |
| 18 } // namespace blink | |
| 19 | |
| 20 #endif // WebTreeScopeType_h | |
| OLD | NEW |