angular-cn/modules/angular2/src
Julie Ralph e1bf3d33f8 feat(debug): replace DebugElement with new Debug DOM
Now, using `ng.probe(element)` in the browser console returns
a DebugElement when in dev mode.

`ComponentFixture#debugElement` also returns a new DebugElement.

Breaking Change:

This is a breaking change for unit tests. The API for the DebugElement
has changed. Now, there is a DebugElement or DebugNode for every node
in the DOM, not only nodes with an ElementRef. `componentViewChildren` is
removed, and `childNodes` is a list of ElementNodes corresponding to every
child in the DOM. `query` no longer takes a scope parameter, since
the entire rendered DOM is included in the `childNodes`.

Before:

```
componentFixture.debugElement.componentViewChildren[0];
```

After
```
// Depending on the DOM structure of your component, the
// index may have changed or the first component child
// may be a sub-child.
componentFixture.debugElement.children[0];
```

Before:

```
debugElement.query(By.css('div'), Scope.all());
```

After:

```
debugElement.query(By.css('div'));
```

Before:

```
componentFixture.debugElement.elementRef;
```

After:

```
componentFixture.elementRef;
```
2016-01-29 11:28:10 -08:00
..
animate Revert "fix(animate): ensure transition properties are removed once the animation is over" 2015-12-11 13:13:11 -08:00
common fix(ddc): type fixes necessary to bring DDC severe count to 0 2016-01-26 03:58:22 +00:00
compiler fix(ddc): router, compiler, web worker fixes for DDC 2016-01-27 02:30:20 +00:00
core feat(debug): replace DebugElement with new Debug DOM 2016-01-29 11:28:10 -08:00
facade feat(change_detection): allow all legal programs in the dev mode 2016-01-26 21:01:19 -08:00
http docs(*): Document a lot more symbols that are missing comments in our generated docs. 2015-12-15 03:04:48 +00:00
mock fix(router): export ROUTER_LINK_DSL_PROVIDER and hide MockPopStateEvent 2015-12-15 09:45:00 -08:00
platform feat(debug): replace DebugElement with new Debug DOM 2016-01-29 11:28:10 -08:00
router feat(WebWorker): Add Router Support for WebWorker Apps 2016-01-26 21:07:12 -08:00
testing feat(debug): replace DebugElement with new Debug DOM 2016-01-29 11:28:10 -08:00
transform/template_compiler chore(core): move compiler out of core 2015-11-05 14:44:52 -08:00
upgrade feat(core): speed up view creation via code gen for view factories. 2016-01-05 08:56:46 -08:00
web_workers feat(debug): replace DebugElement with new Debug DOM 2016-01-29 11:28:10 -08:00