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

Side by Side Diff: LayoutTests/imported/web-platform-tests/html/semantics/text-level-semantics/the-a-element/a-stringifier.html

Issue 1144143009: W3C Test: Import web-platform-tests/html/semantics (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <title>HTMLAnchorElement stringifier</title>
3 <link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com">
4 <link rel="help" href="https://heycam.github.io/webidl/#es-stringifier">
5 <script src=../../../../../../resources/testharness.js></script>
6 <script src=../../../../../../resources/testharnessreport.js></script>
7 <script src=/common/stringifiers.js></script>
8 <div id=log></div>
9 <script>
10 test(function() {
11 test_stringifier_attribute(document.createElement("a"), "href", false);
12 var a = document.createElement("a");
13 a.setAttribute("href", "foo");
14 test_stringifier_attribute(a, "href", false);
15 });
16 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698