Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
Merge pull request #186 from Polymer/master
Browse files Browse the repository at this point in the history
7/11 master -> stable
  • Loading branch information
dfreedm committed Jul 11, 2013
2 parents af08901 + 9977598 commit 42ad082
Show file tree
Hide file tree
Showing 7 changed files with 207 additions and 135 deletions.
23 changes: 23 additions & 0 deletions build.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[
"src/sidetable.js",
"src/wrappers.js",
"src/wrappers/events.js",
"src/wrappers/NodeList.js",
"src/wrappers/Node.js",
"src/querySelector.js",
"src/wrappers/node-interfaces.js",
"src/wrappers/CharacterData.js",
"src/wrappers/Element.js",
"src/wrappers/HTMLElement.js",
"src/wrappers/HTMLContentElement.js",
"src/wrappers/HTMLShadowElement.js",
"src/wrappers/HTMLTemplateElement.js",
"src/wrappers/HTMLUnknownElement.js",
"src/wrappers/generic.js",
"src/wrappers/ShadowRoot.js",
"src/ShadowRenderer.js",
"src/wrappers/Document.js",
"src/wrappers/Window.js",
"src/wrappers/MutationObserver.js",
"src/wrappers/override-constructors.js"
]
172 changes: 84 additions & 88 deletions conf/karma.conf.js
Original file line number Diff line number Diff line change
@@ -1,89 +1,85 @@
// Sample Karma configuration file, that contain pretty much all the available options
// It's used for running client tests on Travis (http://travis-ci.org/#!/karma-runner/karma)
// Most of the options can be overriden by cli arguments (see karma --help)
//
// For all available config options and default values, see:
// https://github.com/karma-runner/karma/blob/stable/lib/config.js#L54


// base path, that will be used to resolve files and exclude
basePath = '../';

// list of files / patterns to load in the browser
files = [
'tools/test/mocha-htmltest.js',
'conf/mocha.conf.js',
'node_modules/chai/chai.js',
'shadowdom.js',
'test/test.main.js',
{pattern: 'src/**/*.js', included: false},
{pattern: 'test/**/*.js', included: false},
{pattern: 'test/**/*.html', included: false},
{pattern: 'tools/**/*.js', included: false}
];

// list of files to exclude
exclude = [];

frameworks = ['mocha'];

// use dots reporter, as travis terminal does not support escaping sequences
// possible values: 'dots', 'progress', 'junit', 'teamcity'
// CLI --reporters progress
reporters = ['progress'];

// web server port
// CLI --port 9876
port = 9876;

// cli runner port
// CLI --runner-port 9100
runnerPort = 9100;

// enable / disable colors in the output (reporters and logs)
// CLI --colors --no-colors
colors = true;

// level of logging
// possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG
// CLI --log-level debug
logLevel = LOG_INFO;

// enable / disable watching file and executing tests whenever any file changes
// CLI --auto-watch --no-auto-watch
autoWatch = true;

// Start these browsers, currently available:
// - Chrome
// - ChromeCanary
// - Firefox
// - Opera
// - Safari (only Mac)
// - PhantomJS
// - IE (only Windows)
// CLI --browsers Chrome,Firefox,Safari
browsers = ['ChromeCanary'];

// If browser does not capture in given timeout [ms], kill it
// CLI --capture-timeout 5000
captureTimeout = 50000;

// Auto run tests on start (when browsers are captured) and exit
// CLI --single-run --no-single-run
singleRun = true;

// report which specs are slower than 500ms
// CLI --report-slower-than 500
reportSlowerThan = 500;

// compile coffee scripts
preprocessors = {
module.exports = function(karma) {
karma.configure({
// base path, that will be used to resolve files and exclude
basePath: '../',

// list of files / patterns to load in the browser
files: [
'tools/test/mocha-htmltest.js',
'conf/mocha.conf.js',
'node_modules/chai/chai.js',
'shadowdom.js',
'test/test.main.js',
{pattern: 'src/**/*.js', included: false},
{pattern: 'test/**/*.js', included: false},
{pattern: 'test/**/*.html', included: false},
{pattern: 'tools/**/*.js', included: false}
],

// list of files to exclude
exclude: [],

frameworks: ['mocha'],

// use dots reporter, as travis terminal does not support escaping sequences
// possible values: 'dots', 'progress', 'junit', 'teamcity'
// CLI --reporters progress
reporters: ['progress'],

// web server port
// CLI --port 9876
port: 9876,

// cli runner port
// CLI --runner-port 9100
runnerPort: 9100,

// enable / disable colors in the output (reporters and logs)
// CLI --colors --no-colors
colors: true,

// level of logging
// possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG
// CLI --log-level debug
logLevel: LOG_INFO,

// enable / disable watching file and executing tests whenever any file changes
// CLI --auto-watch --no-auto-watch
autoWatch: true,

// Start these browsers, currently available:
// - Chrome
// - ChromeCanary
// - Firefox
// - Opera
// - Safari (only Mac)
// - PhantomJS
// - IE (only Windows)
// CLI --browsers Chrome,Firefox,Safari
browsers: ['ChromeCanary'],

// If browser does not capture in given timeout [ms], kill it
// CLI --capture-timeout 5000
captureTimeout: 50000,

// Auto run tests on start (when browsers are captured) and exit
// CLI --single-run --no-single-run
singleRun: true,

// report which specs are slower than 500ms
// CLI --report-slower-than 500
reportSlowerThan: 500,

// compile coffee scripts
preprocessors: {
},

plugins: [
'karma-mocha',
'karma-chrome-launcher',
'karma-firefox-launcher',
'karma-script-launcher',
'karma-crbot-reporter'
]
});
};

plugins = [
'karma-mocha',
'karma-chrome-launcher',
'karma-firefox-launcher',
'karma-script-launcher',
'karma-crbot-reporter'
]
32 changes: 4 additions & 28 deletions gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,32 +4,7 @@
* license that can be found in the LICENSE file.
*/
module.exports = function(grunt) {
ShadowDOM = [
'sidetable.js',
'wrappers.js',
'wrappers/events.js',
'wrappers/NodeList.js',
'wrappers/Node.js',
'querySelector.js',
'wrappers/node-interfaces.js',
'wrappers/CharacterData.js',
'wrappers/Element.js',
'wrappers/HTMLElement.js',
'wrappers/HTMLContentElement.js',
'wrappers/HTMLShadowElement.js',
'wrappers/HTMLTemplateElement.js',
'wrappers/HTMLUnknownElement.js',
'wrappers/generic.js',
'wrappers/ShadowRoot.js',
'ShadowRenderer.js',
'wrappers/Document.js',
'wrappers/Window.js',
'wrappers/MutationObserver.js',
'wrappers/override-constructors.js'
];
ShadowDOM = ShadowDOM.map(function(p) {
return 'src/' + p;
});
ShadowDOM = grunt.file.readJSON('build.json');
// karma setup
var browsers;
(function() {
Expand Down Expand Up @@ -72,7 +47,8 @@ module.exports = function(grunt) {
// TODO(sjmiles): should be false by default (?)
// https://github.com/mishoo/UglifyJS2/issues/165
unsafe: false
}
},
banner: grunt.file.read('LICENSE')
//compress: true, Xmangle: true, beautify: true, unsafe: false
},
files: {
Expand Down Expand Up @@ -103,7 +79,7 @@ module.exports = function(grunt) {
// plugins
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-yuidoc');
grunt.loadNpmTasks('grunt-karma-0.9.1');
grunt.loadNpmTasks('grunt-karma');

// tasks
grunt.registerTask('default', ['uglify']);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"grunt": "*",
"grunt-contrib-uglify": "*",
"grunt-contrib-yuidoc": "~0.4.0",
"grunt-karma-0.9.1": "~0.4.3",
"grunt-karma": "~0.5.0",
"karma-mocha": "*",
"karma-script-launcher": "*",
"karma-crbot-reporter": "*"
Expand Down
47 changes: 33 additions & 14 deletions src/wrappers/events.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,19 @@
return rootOfNode(a) === rootOfNode(b);
}

function enclosedBy(a, b) {
if (a === b)
return true;
if (a instanceof wrappers.ShadowRoot) {
var host = scope.getHostForShadowRoot(a);
if (!host)
return false;
return enclosedBy(rootOfNode(host), b);
}
return false;

}

function isMutationEvent(type) {
switch (type) {
case 'DOMAttrModified':
Expand Down Expand Up @@ -389,17 +402,16 @@
var eventPath = eventPathTable.get(this);
if (eventPath) {
var index = 0;
var found = false;
var currentTarget = currentTargetTable.get(this);
var lastIndex = eventPath.length - 1;
var baseRoot = rootOfNode(currentTargetTable.get(this));

for (var i = 0; i <= lastIndex; i++) {
if (!found)
found = eventPath[i].currentTarget === currentTarget;
if (found) {
var node = eventPath[i].currentTarget;
// Do not include the top Window.
if (i !== lastIndex || node instanceof wrappers.Node)
nodeList[index++] = node;
var currentTarget = eventPath[i].currentTarget;
var currentRoot = rootOfNode(currentTarget);
if (enclosedBy(baseRoot, currentRoot) &&
// Make sure we do not add Window to the path.
(i !== lastIndex || currentTarget instanceof wrappers.Node)) {
nodeList[index++] = currentTarget;
}
}
nodeList.length = index;
Expand Down Expand Up @@ -435,10 +447,17 @@
GenericEvent.prototype = Object.create(SuperEvent.prototype);
if (prototype)
mixin(GenericEvent.prototype, prototype);
// Firefox does not support FocusEvent
// https://bugzilla.mozilla.org/show_bug.cgi?id=855741
if (OriginalEvent)
registerWrapper(OriginalEvent, GenericEvent, document.createEvent(name));
if (OriginalEvent) {
// IE does not support event constructors but FocusEvent can only be
// created using new FocusEvent in Firefox.
// https://bugzilla.mozilla.org/show_bug.cgi?id=882165
if (OriginalEvent.prototype['init' + name]) {
registerWrapper(OriginalEvent, GenericEvent,
document.createEvent(name));
} else {
registerWrapper(OriginalEvent, GenericEvent, new OriginalEvent('temp'));
}
}
return GenericEvent;
}

Expand Down Expand Up @@ -568,7 +587,7 @@
'dispatchEvent'
];

[Element, Window, Document].forEach(function(constructor) {
[Node, Window].forEach(function(constructor) {
var p = constructor.prototype;
methodNames.forEach(function(name) {
Object.defineProperty(p, name + '_', {value: p[name]});
Expand Down
25 changes: 25 additions & 0 deletions test/js/MutationObserver.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,4 +249,29 @@ suite('MutationObserver', function() {
document.head.setAttribute('a', newValue());
});

test('observe text node', function(done) {
if (!window.MutationObserver) {
done();
return;
}

div = document.body.appendChild(document.createElement('div'));
var a = document.createTextNode('');
div.appendChild(a);

var mo = new MutationObserver(function(records, observer) {
mergeRecords(records);
assert.equal(this, mo);
assert.equal(observer, mo);
assert.equal(records[0].type, 'childList');
assert.equal(records[0].target, div);
assert.equal(removedNodes.length, 1);
assert.equal(removedNodes[0], a);
done();
});
mo.observe(div, {childList: true});

div.removeChild(a);
});

});
Loading

0 comments on commit 42ad082

Please sign in to comment.