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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/gc-9-expected.txt

Issue 2000643002: Revert of bindings: Supports [SameObject] extended attribute. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/scripts/v8_attributes.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 This page tests whether custom properties on DOM objects persist after garbage c ollection. 1 This page tests whether custom properties on DOM objects persist after garbage c ollection.
2 2
3 If the test passes, you'll see a series of 'PASS' messages below. 3 If the test passes, you'll see a series of 'PASS' messages below.
4 4
5 Because neither WinIE nor FF has reasonable or predictable behavior in this scen ario, this test just documents our behavior to ensure that we don't change it ac cidentally. It is not a prescription for how things should behave. 5 Because neither WinIE nor FF has reasonable or predictable behavior in this scen ario, this test just documents our behavior to ensure that we don't change it ac cidentally. It is not a prescription for how things should behave.
6 6
7 DOM OBJECTS BEFORE GARBAGE COLLECTION: 7 DOM OBJECTS BEFORE GARBAGE COLLECTION:
8 PASS: document.implementation.myCustomProperty should be 1 and is. 8 PASS: document.implementation.myCustomProperty should be 1 and is.
9 PASS: document.fonts.myCustomProperty should be 1 and is. 9 PASS: document.fonts.myCustomProperty should be 1 and is.
10 PASS: document.myCustomProperty should be 1 and is. 10 PASS: document.myCustomProperty should be 1 and is.
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 PASS: document.forms.myCustomProperty should be 1 and is. 74 PASS: document.forms.myCustomProperty should be 1 and is.
75 PASS: document.anchors.myCustomProperty should be 1 and is. 75 PASS: document.anchors.myCustomProperty should be 1 and is.
76 PASS: document.scripts.myCustomProperty should be 1 and is. 76 PASS: document.scripts.myCustomProperty should be 1 and is.
77 PASS: document.getElementsByTagName('form')[0].elements.myCustomProperty should be 1 and is. 77 PASS: document.getElementsByTagName('form')[0].elements.myCustomProperty should be 1 and is.
78 PASS: document.getElementsByTagName('table')[0].rows.myCustomProperty should be 1 and is. 78 PASS: document.getElementsByTagName('table')[0].rows.myCustomProperty should be 1 and is.
79 PASS: document.getElementsByTagName('table')[0].rows[0].cells.myCustomProperty s hould be 1 and is. 79 PASS: document.getElementsByTagName('table')[0].rows[0].cells.myCustomProperty s hould be 1 and is.
80 PASS: document.getElementsByTagName('table')[0].tBodies.myCustomProperty should be 1 and is. 80 PASS: document.getElementsByTagName('table')[0].tBodies.myCustomProperty should be 1 and is.
81 PASS: document.getElementsByTagName('table')[0].tBodies[0].rows.myCustomProperty should be 1 and is. 81 PASS: document.getElementsByTagName('table')[0].tBodies[0].rows.myCustomProperty should be 1 and is.
82 PASS: document.body.children.myCustomProperty should be 1 and is. 82 PASS: document.body.children.myCustomProperty should be 1 and is.
83 PASS: document.getElementsByTagName('map')[0].areas.myCustomProperty should be 1 and is. 83 PASS: document.getElementsByTagName('map')[0].areas.myCustomProperty should be 1 and is.
84 PASS: document.body.style.myCustomProperty should be 1 and is. 84 FAIL: document.body.style.myCustomProperty should be 1 but instead is undefined.
85 PASS: document.styleSheets.myCustomProperty should be 1 and is. 85 PASS: document.styleSheets.myCustomProperty should be 1 and is.
86 PASS: document.styleSheets[0].myCustomProperty should be 1 and is. 86 PASS: document.styleSheets[0].myCustomProperty should be 1 and is.
87 PASS: document.styleSheets[0].cssRules.myCustomProperty should be 1 and is. 87 PASS: document.styleSheets[0].cssRules.myCustomProperty should be 1 and is.
88 FAIL: document.styleSheets[0].cssRules[0].myCustomProperty should be 1 but inste ad is undefined. 88 FAIL: document.styleSheets[0].cssRules[0].myCustomProperty should be 1 but inste ad is undefined.
89 PASS: new XPathEvaluator().myCustomProperty should be undefined and is. 89 PASS: new XPathEvaluator().myCustomProperty should be undefined and is.
90 PASS: new XPathEvaluator().evaluate('/', document, null, 0, null).myCustomProper ty should be undefined and is. 90 PASS: new XPathEvaluator().evaluate('/', document, null, 0, null).myCustomProper ty should be undefined and is.
91 PASS: document.createNSResolver(document).myCustomProperty should be undefined a nd is. 91 PASS: document.createNSResolver(document).myCustomProperty should be undefined a nd is.
92 PASS: document.createExpression('/', document.createNSResolver(document)).myCust omProperty should be undefined and is. 92 PASS: document.createExpression('/', document.createNSResolver(document)).myCust omProperty should be undefined and is.
93 DOM EVENT BEFORE GARBAGE COLLECTION 93 DOM EVENT BEFORE GARBAGE COLLECTION
94 PASS: event.myCustomProperty should be 1 and is. 94 PASS: event.myCustomProperty should be 1 and is.
95 DOM EVENT AFTER GARBAGE COLLECTION 95 DOM EVENT AFTER GARBAGE COLLECTION
96 PASS: event.myCustomProperty should be 1 and is. 96 PASS: event.myCustomProperty should be 1 and is.
97 97
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/scripts/v8_attributes.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698