Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(425)

Unified Diff: headless/test/data/dom_tree_test.html

Issue 2385653003: Add a utility class for extracting details of the DOM (Closed)
Patch Set: Refactor Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: headless/test/data/dom_tree_test.html
diff --git a/headless/test/data/dom_tree_test.html b/headless/test/data/dom_tree_test.html
new file mode 100644
index 0000000000000000000000000000000000000000..e02f85907349193c15efe9b2765196926cca851c
--- /dev/null
+++ b/headless/test/data/dom_tree_test.html
@@ -0,0 +1,17 @@
+<html>
+<head>
+<title>Hello world!</title>
+</head>
+<body>
+<div id="id1">
+Some text.
+<iframe src="/iframe.html" width="400" height="200"></iframe>
+<div id="id2">
+ <div id="id3">
+ <div id="id4">
+ <a href="https://www.google.com">Google!</a>
+ </div>
+ </div>
+</div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698