3d01849d2e370cf6a444dcc84f105bb26f21c89a737cf5c8bc67fe3634214d1bcf2319a6885981eb69e98806af262a07371040f44a4d4b756e56b312bc83de 309 B

12345678910111213
  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. };