• File: element.js
  • Full Path: /var/www/sandbox/node_modules/css-tree/lib/syntax/function/element.js
  • Date Modified: 02/20/2025 6:18 PM
  • File size: 309 bytes
  • MIME-type: text/plain
  • Charset: utf-8
// https://drafts.csswg.org/css-images-4/#element-notation
// https://developer.mozilla.org/en-US/docs/Web/CSS/element
module.exports = function() {
    this.scanner.skipSC();

    var children = this.createSingleNodeList(
        this.IdSelector()
    );

    this.scanner.skipSC();

    return children;
};