You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
309 B

4 years ago
  1. // https://drafts.csswg.org/css-images-4/#element-notation
  2. // https://developer.mozilla.org/en-US/docs/Web/CSS/element
  3. module.exports = function() {
  4. this.scanner.skipSC();
  5. var children = this.createSingleNodeList(
  6. this.IdSelector()
  7. );
  8. this.scanner.skipSC();
  9. return children;
  10. };