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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/HTMLInputElement/duplicate-element-names-expected.txt

Issue 2887273003: No extra space emission in TextIterator::HandleReplacedElement (Closed)
Patch Set: Fri May 19 00:09:20 PDT 2017 Created 3 years, 7 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
1 Multiple radio buttons/checkboxes with the same name should map to a countable c ollection object when accessed through either document.form.name or document.get ElementsbyName(). There is no standardization for what that object is called (Co llection, NodeList, HTMLCollection, etc.), nor is it always the same for both me thods of access. 1 Multiple radio buttons/checkboxes with the same name should map to a countable c ollection object when accessed through either document.form.name or document.get ElementsbyName(). There is no standardization for what that object is called (Co llection, NodeList, HTMLCollection, etc.), nor is it always the same for both me thods of access.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 Radio button: Male Female 6 Radio button: Male Female
7 Checkbox: 1 7 Checkbox: 1
8 Checkbox: 1 2 8 Checkbox: 1 2
9 9
10 PASS typeof document.f.cb0 is 'undefined' 10 PASS typeof document.f.cb0 is 'undefined'
11 PASS document.f.cb1.nodeName is 'INPUT' 11 PASS document.f.cb1.nodeName is 'INPUT'
12 PASS document.f.cb2.length is 2 12 PASS document.f.cb2.length is 2
13 PASS document.f.rb2.length is 2 13 PASS document.f.rb2.length is 2
14 PASS document.getElementsByName('cb2').length is 2 14 PASS document.getElementsByName('cb2').length is 2
15 PASS document.getElementsByName('rb2').length is 2 15 PASS document.getElementsByName('rb2').length is 2
16 PASS successfullyParsed is true 16 PASS successfullyParsed is true
17 17
18 TEST COMPLETE 18 TEST COMPLETE
19 19
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698