You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Windows dartium is reliably crashing (Aw, Snap) on Dartium when I run:
index-js.html?dart&dom&query
I've isolated what I think is a similar fragment. This is crashing for me in Dartium playground:
import('dart:dom');
void main() {
final message = 'Hello from Dart!';
final node = document.createElement('div');
node.innerHTML = '<b>Hello</b>';
document.body.appendChild(node);
var nodes = document.getElementsByTagName('*');
print('Open the Dev Tools Console to see this. ${nodes[nodes.length-1]}');
}
The text was updated successfully, but these errors were encountered:
Note, to run Dromaeo (via index-js.html), you need to run samples/third_party/dromaeo/generate_frog_tests.py. It will create index-js.html in that same directory.
We should also be able to run:
index.html?dart&dom&query
That also crashes, but earlier. It may be a different bug.
The Windows dartium is reliably crashing (Aw, Snap) on Dartium when I run:
index-js.html?dart&dom&query
I've isolated what I think is a similar fragment. This is crashing for me in Dartium playground:
import('dart:dom');
void main() {
final message = 'Hello from Dart!';
final node = document.createElement('div');
node.innerHTML = '<b>Hello</b>';
document.body.appendChild(node);
var nodes = document.getElementsByTagName('*');
print('Open the Dev Tools Console to see this. ${nodes[nodes.length-1]}');
}
The text was updated successfully, but these errors were encountered: