We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
try the following line of code in the browser or node through terminal (is going to hang the process) is not crashing firefox though..
'<input type="email" name="email" class="form-control" ng-model="user.email" required'.match(/^<([\w:-]+)((?:\s*[\w:.-]+(?:\s*(?:(?:=))\s*(?:(?:"[^"]*")|(?:'[^']*')|[^>\s]+))?)*)\s*(\/?)>/)
is not actually crashing the process but takes a veeery long time to return and adding more attributes to the html is even worst. Related to #213
this regexp is returned by startTagForHandler and the string is actually part of the html that is going through the parser.
startTagForHandler
apparently for what I googled, is a bug in the js engine http://stackoverflow.com/questions/12825950/why-does-this-javascript-match-function-crash-my-browser
The text was updated successfully, but these errors were encountered:
Duplicate of #332
Sorry, something went wrong.
No branches or pull requests
try the following line of code in the browser or node through terminal (is going to hang the process)
is not crashing firefox though..
is not actually crashing the process but takes a veeery long time to return and adding more attributes to the html is even worst. Related to #213
this regexp is returned by
startTagForHandler
and the string is actually part of the html that is going through the parser.apparently for what I googled, is a bug in the js engine http://stackoverflow.com/questions/12825950/why-does-this-javascript-match-function-crash-my-browser
The text was updated successfully, but these errors were encountered: