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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/html/semantics/embedded-content/the-object-element/object-ignored-in-media-element.html

Issue 2695813009: Import wpt@503f5b5f78ec4e87d144f78609f363f0ed0ea8db (Closed)
Patch Set: Skip some tests Created 3 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!doctype html>
2 <meta charset="utf-8">
3 <title>HTML Test: The embed element represents a document</title>
4 <script src="/resources/testharness.js"></script>
5 <script src="/resources/testharnessreport.js"></script>
6 <meta name="assert" content="Check if the object element is ignored when used in side a media element">
7 <script type="application/javascript">
8 var nestingTest = async_test("Test <object> being ignored inside media element ");
9 onload = nestingTest.step_func_done(function() {
10 assert_true(true, "We got to a load event without loading things we should n ot load");
11 });
12 </script>
13 <body>
14 <video>
15 <object type="text/html" data="../resources/should-not-load.html"
16 test-description="<object> in <video>"></object>
17 </video>
18 <audio>
19 <object type="text/html" data="../resources/should-not-load.html"
20 test-description="<object> in <audio>"></object>
21 </audio>
22 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698