Unreviewed, rolling out r108477.
authorharaken@chromium.org <haraken@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Fri, 24 Feb 2012 14:03:28 +0000 (14:03 +0000)
committerharaken@chromium.org <haraken@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Fri, 24 Feb 2012 14:03:28 +0000 (14:03 +0000)
http://trac.webkit.org/changeset/108477
https://bugs.webkit.org/show_bug.cgi?id=79209

The perf tests committed in r108748 covers the perf tests
committed in r108477. So I'll roll out r108477.

* Bindings/dom_attributes_id_getter.html: Removed.
* Bindings/dom_attributes_id_setter.html: Removed.
* Bindings/resources/dom_attributes_common.js: Removed.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@108782 268f45cc-cd09-0410-ab3c-d52691b4dbfc

PerformanceTests/Bindings/dom_attributes_id_getter.html [deleted file]
PerformanceTests/Bindings/dom_attributes_id_setter.html [deleted file]
PerformanceTests/Bindings/resources/dom_attributes_common.js [deleted file]
PerformanceTests/ChangeLog

diff --git a/PerformanceTests/Bindings/dom_attributes_id_getter.html b/PerformanceTests/Bindings/dom_attributes_id_getter.html
deleted file mode 100644 (file)
index fd62757..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-<!DOCTYPE html>
-<body>
-<script src="../resources/runner.js"></script>
-<script src="resources/dom_attributes_common.js"></script>
-<script>
-PerfTestRunner.run(function() {
-    var div = document.createElement("div");
-    for (var i = 0; i < repeatTimesForGetter; i++) {
-        div.id;
-    }
-}, 1);
-</script>
-</body>
-</html>
diff --git a/PerformanceTests/Bindings/dom_attributes_id_setter.html b/PerformanceTests/Bindings/dom_attributes_id_setter.html
deleted file mode 100644 (file)
index b097d33..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-<!DOCTYPE html>
-<body>
-<script src="../resources/runner.js"></script>
-<script src="resources/dom_attributes_common.js"></script>
-<script>
-PerfTestRunner.run(function() {
-    var div = document.createElement("div");
-    for (var i = 0; i < repeatTimesForSetter; i++) {
-        div.id = "foo";
-    }
-}, 1);
-</script>
-</body>
-</html>
diff --git a/PerformanceTests/Bindings/resources/dom_attributes_common.js b/PerformanceTests/Bindings/resources/dom_attributes_common.js
deleted file mode 100644 (file)
index 532d800..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-var repeatTimesForGetter = 4000000;
-var repeatTimesForSetter = 1000000;
\ No newline at end of file
index c2038b0..47e17d3 100644 (file)
@@ -1,5 +1,18 @@
 2012-02-24  Kentaro Hara  <haraken@chromium.org>
 
+        Unreviewed, rolling out r108477.
+        http://trac.webkit.org/changeset/108477
+        https://bugs.webkit.org/show_bug.cgi?id=79209
+
+        The perf tests committed in r108748 covers the perf tests
+        committed in r108477. So I'll roll out r108477.
+
+        * Bindings/dom_attributes_id_getter.html: Removed.
+        * Bindings/dom_attributes_id_setter.html: Removed.
+        * Bindings/resources/dom_attributes_common.js: Removed.
+
+2012-02-24  Kentaro Hara  <haraken@chromium.org>
+
         Add performance tests for DOM attribute getters and setters
         https://bugs.webkit.org/show_bug.cgi?id=79208