Skip to content

Step over crashes tab in Dartium #3318

@sethladd

Description

@sethladd

This simple code:

import('dart:html');

void main() {
  ButtonElement button = new Element.tag('button');

  button.text = 'Click me';
  button.classes.add('important');

  button.on.click.add((e) => window.alert('Clicked!!'));

  document.body.elements.add(button);
}

Open Dev Tools. Click Sources. Select the Dart file. Set breakpoint on line 5 (button.text = 'Click me';) Reload page. Program stops on line 6 (yay!) Click Step over in script debugger in Dev Tools. Tab crash. (boo :(

Dartium:

Chromium 21.0.1156.0 (Developer Build 139395)
OS Mac OS X
WebKit 537.1 (Source/WebCore/Configurations@567)
JavaScript V8 3.11.7
DartVM r8116
Flash 11.2.202.235
User Agent Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1156.0 (Dart) Safari/537.1
Command Line /Users/sethladd/Downloads/dart 2/dart-sdk/Chromium.app/Contents/MacOS/Chromium --remote-debugging-port=9322 --user-data-dir=/Users/sethladd/.dartiumSettings --bwsi --no-first-run --no-default-browser-check --no-process-singleton-dialog --flag-switches-begin --flag-switches-end about:blank
Executable Path /Users/sethladd/Downloads/dart 2/dart-sdk/Chromium.app/Contents/MacOS/Chromium
Profile Path /Users/sethladd/.dartiumSettings/Default

Metadata

Metadata

Assignees

No one assigned

    Labels

    area-vmUse area-vm for VM related issues, including code coverage, and the AOT and JIT backends.

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions