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

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt/html/semantics/grouping-content/the-ol-element/grouping-ol.html

Issue 2303013002: Add UMA metric to track usage of sending a mousedown to select elements. (Closed)
Patch Set: W3C auto test import CL. 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: third_party/WebKit/LayoutTests/imported/wpt/html/semantics/grouping-content/the-ol-element/grouping-ol.html
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/html/semantics/grouping-content/the-ol-element/grouping-ol.html b/third_party/WebKit/LayoutTests/imported/wpt/html/semantics/grouping-content/the-ol-element/grouping-ol.html
index 6dfd26eecb00204d18dd3e6e5bc7e05daa9f33b9..0de2a064103ff9c42279fd6eed08eb0891015c5a 100644
--- a/third_party/WebKit/LayoutTests/imported/wpt/html/semantics/grouping-content/the-ol-element/grouping-ol.html
+++ b/third_party/WebKit/LayoutTests/imported/wpt/html/semantics/grouping-content/the-ol-element/grouping-ol.html
@@ -169,17 +169,17 @@
// check that "own" properties reversed, start, and type are present
test(function () {
testList = document.getElementById("basic");
- assert_own_property(testList, "reversed");
+ assert_idl_attribute(testList, "reversed");
}, "'reversed' property should be defined on OL.");
test(function () {
testList = document.getElementById("basic");
- assert_own_property(testList, "start");
+ assert_idl_attribute(testList, "start");
}, "'start' property should be defined on OL.");
test(function () {
testList = document.getElementById("basic");
- assert_own_property(testList, "type");
+ assert_idl_attribute(testList, "type");
}, "'type' property should be defined on OL.");
// "The reversed, start, and type IDL attributes must reflect the respective content attributes of the same name."

Powered by Google App Engine
This is Rietveld 408576698