PageRenderTime 42ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/src/html/tags/d/Dl.php

http://github.com/facebook/xhp
PHP | 16 lines | 6 code | 1 blank | 9 comment | 0 complexity | a0ec114c45c9504504018cc87f8889aa MD5 | raw file
Possible License(s): MIT, MPL-2.0-no-copyleft-exception
  1. <?hh // strict
  2. /*
  3. * Copyright (c) 2015, Facebook, Inc.
  4. * All rights reserved.
  5. *
  6. * This source code is licensed under the BSD-style license found in the
  7. * LICENSE file in the root directory of this source tree. An additional grant
  8. * of patent rights can be found in the PATENTS file in the same directory.
  9. *
  10. */
  11. class :dl extends :xhp:html-element {
  12. category %flow;
  13. children (:dt+, :dd+)*;
  14. protected string $tagName = 'dl';
  15. }