<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/test/scenario, branch v0.10.1</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>fix(scenario): do not navigate if click event was cancelled</title>
<updated>2011-09-08T21:00:59+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-08-30T11:14:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=66dec7755573a1c07a1fe8e0dd9bc5fc51dbaac9'/>
<id>66dec7755573a1c07a1fe8e0dd9bc5fc51dbaac9</id>
<content type='text'>
This is jQuery incompatible hack.
But we were doing monkey patching there anyway...

`$(...).trigger('click')` returns an array of return values, so that scenario
runner knows, whether the event default action was cancelled.

Without this fix, scenario runner was doing navigation even if JS code called
`event.preventDefault()`.

Note, this does not work in FF6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is jQuery incompatible hack.
But we were doing monkey patching there anyway...

`$(...).trigger('click')` returns an array of return values, so that scenario
runner knows, whether the event default action was cancelled.

Without this fix, scenario runner was doing navigation even if JS code called
`event.preventDefault()`.

Note, this does not work in FF6
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(scope): new and improved scope implementation</title>
<updated>2011-08-01T23:00:03+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2011-03-23T16:33:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=8f0dcbab804180828d6859b1340c86cf161209fb'/>
<id>8f0dcbab804180828d6859b1340c86cf161209fb</id>
<content type='text'>
- Speed improvements (about 4x on flush phase)
- Memory improvements (uses no function closures)
- Break $eval into $apply, $dispatch, $flush
- Introduced $watch and $observe

Breaks angular.equals() use === instead of ==
Breaks angular.scope() does not take parent as first argument
Breaks scope.$watch() takes scope as first argument
Breaks scope.$set(), scope.$get are removed
Breaks scope.$config is removed
Breaks $route.onChange callback has not "this" bounded
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Speed improvements (about 4x on flush phase)
- Memory improvements (uses no function closures)
- Break $eval into $apply, $dispatch, $flush
- Introduced $watch and $observe

Breaks angular.equals() use === instead of ==
Breaks angular.scope() does not take parent as first argument
Breaks scope.$watch() takes scope as first argument
Breaks scope.$set(), scope.$get are removed
Breaks scope.$config is removed
Breaks $route.onChange callback has not "this" bounded
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(strict mode): adding strict mode flag to all js files</title>
<updated>2011-07-18T19:12:55+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-07-17T08:05:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=fe5240732d0a80b8717be77b31d51dc3c4d737fd'/>
<id>fe5240732d0a80b8717be77b31d51dc3c4d737fd</id>
<content type='text'>
the flag must be in all src and test files so that we get the benefit of
running in the strict mode even in jstd

the following script was used to modify all files:

for file in `find src test -name "*.js"`; do
  echo -e "'use strict';\n" &gt; temp.txt
  cat $file &gt;&gt; temp.txt
  mv temp.txt $file
done
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
the flag must be in all src and test files so that we get the benefit of
running in the strict mode even in jstd

the following script was used to modify all files:

for file in `find src test -name "*.js"`; do
  echo -e "'use strict';\n" &gt; temp.txt
  cat $file &gt;&gt; temp.txt
  mv temp.txt $file
done
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(strict mode): fix all issues discovered by strict mode and unit/e2e tests</title>
<updated>2011-07-18T19:12:54+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-07-17T07:47:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=4c6d26a38f977f61d4deaacfd6b6c71f331e8065'/>
<id>4c6d26a38f977f61d4deaacfd6b6c71f331e8065</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor($browser): hide startPoll and poll methods</title>
<updated>2011-07-18T07:04:14+00:00</updated>
<author>
<name>DiPeng</name>
</author>
<published>2011-06-24T19:26:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=7974e7eb5f3821b77691819683f9aa37f3c37473'/>
<id>7974e7eb5f3821b77691819683f9aa37f3c37473</id>
<content type='text'>
Breaks $browser.poll() method is moved inline to $browser.startpoll()
Breaks $browser.startpoll() method is made private
Refactor tests to reflect updated browser API

Closes #387
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Breaks $browser.poll() method is moved inline to $browser.startpoll()
Breaks $browser.startpoll() method is made private
Refactor tests to reflect updated browser API

Closes #387
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove obsolete scenario folder</title>
<updated>2011-06-17T17:13:49+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-06-17T17:06:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=92ebf11b2aaaa357b7d3d91c297b747ae4b8fdf0'/>
<id>92ebf11b2aaaa357b7d3d91c297b747ae4b8fdf0</id>
<content type='text'>
* moved scenario e2e tests in test/scenario/e2e folder
* remove $location test
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* moved scenario e2e tests in test/scenario/e2e folder
* remove $location test
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix test for scenario.Application - should remove old iframe</title>
<updated>2011-06-16T05:58:57+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-06-15T20:58:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=7460a7ef618a274607ea99aecae99fb158115c36'/>
<id>7460a7ef618a274607ea99aecae99fb158115c36</id>
<content type='text'>
This behavior was changed by e83465c362c53ac7451183a775456f3112262f6e
So this commit should have been part of e83465c362c53ac7451183a775456f3112262f6e

Also removed hiding and navigating to about:blank as it makes no sense now...
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This behavior was changed by e83465c362c53ac7451183a775456f3112262f6e
So this commit should have been part of e83465c362c53ac7451183a775456f3112262f6e

Also removed hiding and navigating to about:blank as it makes no sense now...
</pre>
</div>
</content>
</entry>
<entry>
<title>added input#val method</title>
<updated>2011-06-06T19:49:46+00:00</updated>
<author>
<name>Di Peng</name>
</author>
<published>2011-06-05T18:44:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=9fdb09ebf86f4bc85ded08371fbafbab75aba8bf'/>
<id>9fdb09ebf86f4bc85ded08371fbafbab75aba8bf</id>
<content type='text'>
Closes #237
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #237
</pre>
</div>
</content>
</entry>
<entry>
<title>renamed $pause to $sleep AND $wait to $pause</title>
<updated>2011-06-05T19:00:45+00:00</updated>
<author>
<name>Di Peng</name>
</author>
<published>2011-06-03T22:22:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=1eebb771e3940ddd6640ddc064d5fa6e539c536d'/>
<id>1eebb771e3940ddd6640ddc064d5fa6e539c536d</id>
<content type='text'>
Closes #207
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #207
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix CSS tests on Opera</title>
<updated>2011-06-02T19:51:12+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-06-02T18:15:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=9a6967755116f14b6f27fc00b5976b58f0bc6fcd'/>
<id>9a6967755116f14b6f27fc00b5976b58f0bc6fcd</id>
<content type='text'>
Opera translates name colors to numbers (red -&gt; #ff0000)
Other browsers like FF or Chrome translate number to rgb (#ff0000 -&gt; rgb(255, 0, 0)
So avoiding colors in tests is probably the easiest solution...
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Opera translates name colors to numbers (red -&gt; #ff0000)
Other browsers like FF or Chrome translate number to rgb (#ff0000 -&gt; rgb(255, 0, 0)
So avoiding colors in tests is probably the easiest solution...
</pre>
</div>
</content>
</entry>
</feed>
