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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/geometry-interface-dom-quad.html

Issue 2639983002: [GeometryInterface] add fromRect function in DOMQuad. (Closed)
Patch Set: [GeometryInterface] add fromRect function in DOMQuad. Created 3 years, 11 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/dom/geometry-interface-dom-quad.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/geometry-interface-dom-quad.html b/third_party/WebKit/LayoutTests/fast/dom/geometry-interface-dom-quad.html
index 071ba7ffa1cf69c0e73f9da3e05296892bf8b8fa..4ab3e500f9e6d81e83997acfe9275911cc4a8200 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/geometry-interface-dom-quad.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/geometry-interface-dom-quad.html
@@ -27,4 +27,16 @@ test(() => {
assert_dom_point_equals(quad.toJSON().p4, p4, "p4");
}, "DOMQuad() toJSON()");
+test(() => {
+ var expect_p1 = new DOMPoint(10, 20, 0, 1);
+ var expect_p2 = new DOMPoint(90, 20, 0, 1);
+ var expect_p3 = new DOMPoint(90, 70, 0, 1);
+ var expect_p4 = new DOMPoint(10, 70, 0, 1);
+ var quad = DOMQuad.fromRect({x: 10, y: 20, width: 80, height: 50});
+ assert_dom_point_equals(quad.p1, expect_p1, "p1");
+ assert_dom_point_equals(quad.p2, expect_p2, "p2");
+ assert_dom_point_equals(quad.p3, expect_p3, "p3");
+ assert_dom_point_equals(quad.p4, expect_p4, "p4");
+}, "DOMQuad() fromRect");
+
</script>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698