This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Observable = Rx.Observable; | |
// Nested SwitchLatest/SwitchMap BROKEN? | |
// Expecting: "A", "B" (with synchronous scheduler/execution) | |
// Observed: "B" | |
Observable.of( | |
Observable.of('A').switchMap(function(o) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
✓ Testing started on Mozilla/5.0 (Windows NT 6.3; Trident/7.0; .NET4.0E; .NET4.0C; rv:11.0) like Gecko | |
✗ Charts: PieSeries on Mozilla/5.0 (Windows NT 6.3; Trident/7.0; .NET4.0E; .NET4.0C; rv:11.0) like Gecko | |
in PieSeries Tests | |
test: addHotspot(): The coord should be the same. | |
Expected: 205.38843109171282 (number) | |
Actual: 205 (number) | |
► Testing... - 45% complete (135/300) 37.28 beats/sec ETA 6 minutes, 43 seconds [Blizzard] xferObject: Failed to stringify, dropping: { method: 'batch1375212088902118628.agentDisconnect', | |
params: | |
[ 'Mozilla/5.0 (Windows NT 6.3; Trident/7.0; .NET4.0E; .NET4.0C; rv:11.0) like Gecko', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
✓ Testing started on Mozilla/5.0 (Windows NT 6.3; Trident/7.0; .NET4.0E; .NET4.0C; rv:11.0) like Gecko | |
✗ Charts: PieSeries on Mozilla/5.0 (Windows NT 6.3; Trident/7.0; .NET4.0E; .NET4.0C; rv:11.0) like Gecko | |
in PieSeries Tests | |
test: addHotspot(): The coord should be the same. | |
Expected: 205.38843109171282 (number) | |
Actual: 205 (number) | |
► Testing... - 45% complete (135/300) 37.28 beats/sec ETA 6 minutes, 43 seconds [Blizzard] xferObject: Failed to stringify, dropping: { method: 'batch1375212088902118628.agentDisconnect', | |
params: | |
[ 'Mozilla/5.0 (Windows NT 6.3; Trident/7.0; .NET4.0E; .NET4.0C; rv:11.0) like Gecko', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<script type='text/javascript' src='http://yui.yahooapis.com/3.10.3/build/yui/yui.js'></script> | |
<title>Node</title> | |
</head> | |
<body> | |
<div> | |
<style scoped> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"test subclass can get() superclass attributes" : function() { | |
function MyBase() { | |
MyBase.superclass.constructor.apply(this, arguments); | |
} | |
Y.extend(MyBase, Y.Base, null, { | |
ATTRS : { | |
foo : { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 3.10.0 | |
dataProvider | |
- addAttr(dataProvider) | |
- setter(dataProvider) | |
- seriesKeysExplicitlySet === undefined | |
- set(seriesKeys, parsedFromDataProvider) | |
- set AD-HOC (not added yet) | |
- set value = parsedFromDataProvider |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Agent connected: Chrome (26.0.1410.43) / Mac OS from 127.0.0.1 | |
Agent connected: Safari (6.0.1) / Mac OS from 127.0.0.1 | |
Agent connected: Firefox (19.0) / Mac OS from 127.0.0.1 | |
Agent connected: Safari (6.0) / iOS 6.0 from 127.0.0.1 | |
✓ Testing started on Chrome (26.0.1410.43) / Mac OS, Safari (6.0.1) / Mac OS, Firefox (19.0) / Mac OS, Safari (6.0) / iOS 6.0 | |
# LEGITIMATE Y.clone(nodeInstance) ISSUE. ERIC IS LOOKING AT THIS | |
✗ Attribute on Firefox (19.0) / Mac OS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"testCloneNode" : function() { | |
var node = Y.Node.create("<div></div>"); | |
var o1 = Y.clone(node); | |
try { | |
o1._node.style; | |
} catch (e) { | |
Y.Assert.fail("Barfing accessing clonedNode._node.style (amoungst other properties)"); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
attrs-perf | |
Starting | |
cloning: _yuievt | |
cloning: id | |
cloning: events | |
cloning: _~yuim~_ | |
cloning: targets | |
cloning: _~yuim~_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
html, body { | |
padding:0; | |
margin:0; | |
} | |
#container { |
NewerOlder