mml_css_highlighter.js 382 B

12345678910111213
  1. import { CssHighlighter } from './css_highlighter.js';
  2. export class MmlCssHighlighter extends CssHighlighter {
  3. constructor() {
  4. super();
  5. this.mactionName = 'maction';
  6. }
  7. getMactionNodes(node) {
  8. return Array.from(node.getElementsByTagName(this.mactionName));
  9. }
  10. isMactionNode(node) {
  11. return node.tagName === this.mactionName;
  12. }
  13. }