aboutsummaryrefslogtreecommitdiff
path: root/benchmark/agbenchmark/challenges/deprecated/code/1_list_animals/artifacts_out/animal_list.html
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/agbenchmark/challenges/deprecated/code/1_list_animals/artifacts_out/animal_list.html')
-rw-r--r--benchmark/agbenchmark/challenges/deprecated/code/1_list_animals/artifacts_out/animal_list.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/benchmark/agbenchmark/challenges/deprecated/code/1_list_animals/artifacts_out/animal_list.html b/benchmark/agbenchmark/challenges/deprecated/code/1_list_animals/artifacts_out/animal_list.html
new file mode 100644
index 000000000..7991aa2c5
--- /dev/null
+++ b/benchmark/agbenchmark/challenges/deprecated/code/1_list_animals/artifacts_out/animal_list.html
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+ <title>List of Animals</title>
+</head>
+
+<body>
+
+ <h2>List of Animals</h2>
+
+ <ul>
+ <li id="dog">Dog</li>
+ <li>Cat</li>
+ <li>Rabbit</li>
+ <li>Horse</li>
+ </ul>
+
+ <div id="info"></div>
+
+ <script>
+ document.getElementById("dog").addEventListener("click", function() {
+ document.getElementById("info").innerHTML = "Dogs are known as man's best friend!";
+ });
+ </script>
+
+</body>
+
+</html>