+2014-05-31 Ryosuke Niwa <rniwa@webkit.org>
+
+ DYEBench: Ember.js assertion hit at line 20593
+ https://bugs.webkit.org/show_bug.cgi?id=133431
+
+ Reviewed by Darin Adler.
+
+ The assertion was hit because ToDoMVC includes jQuery 2.1 and Ember.js 1.3.1 only recognizes jQuery 2.0.
+ Port the assertion from Ember.js 1.5.1 to suppress the assertion.
+
+ We should update the entire Ember.js at some point but this would do the job for now.
+
+ * DoYouEvenBench/Full.html:
+ * DoYouEvenBench/resources/todomvc/architecture-examples/emberjs/bower_components/ember/ember.js:
+
2014-05-31 Ryosuke Niwa <rniwa@webkit.org>
DYEBench: Prevent frame flattening on iOS
<!DOCTYPE html>
<html>
<head>
-<title>DoYouEvenBench v0.13</title>
+<title>DoYouEvenBench v0.14</title>
<style type="text/css">
caption { margin: 0; padding: 0; font-family: sans-serif; font-size: 1em; font-weight: bold; white-space: nowrap; }
#progressContainer { padding: 605px 0 10px 0; width: 800px; }
jQuery = require('jquery');
}
-Ember.assert("Ember Views require jQuery 1.7, 1.8, 1.9, 1.10, or 2.0", jQuery && (jQuery().jquery.match(/^((1\.(7|8|9|10))|2.0)(\.\d+)?(pre|rc\d?)?/) || Ember.ENV.FORCE_JQUERY));
+Ember.assert("Ember Views require jQuery between 1.7 and 2.1", jQuery && (jQuery().jquery.match(/^((1\.(7|8|9|10|11))|(2\.(0|1)))(\.\d+)?(pre|rc\d?)?/) || Ember.ENV.FORCE_JQUERY));
/**
Alias for jQuery