blob: 7435620c1914746013ff25fbb037836d94956294 [file] [log] [blame]
Copybara botbe50d492023-11-30 00:16:42 +01001define( function() {
2 "use strict";
3
4 // rtagName captures the name from the first start tag in a string of HTML
5 // https://html.spec.whatwg.org/multipage/syntax.html#tag-open-state
6 // https://html.spec.whatwg.org/multipage/syntax.html#tag-name-state
7 return ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i );
8} );