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

Side by Side Diff: LayoutTests/fast/dom/shadow/shadowdom-for-textarea-with-placeholder.html

Issue 23035007: Replace HTMLTextFormControlElement::fixPlaceholderRenderer with an override of RenderTextControl::a… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Just delete the test Created 7 years, 4 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
« no previous file with comments | « no previous file | LayoutTests/fast/dom/shadow/shadowdom-for-textarea-with-placeholder-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <link rel="stylesheet" href="resources/replaced-element-styles.css" type="text/c ss">
5 </head>
6 <body>
7
8 <textarea id="host" rows="4" cols="30" placeholder="This is a placeholder text." ></textarea>
9
10 <script>
11 if (window.internals)
12 internals.settings.setAuthorShadowDOMForAnyElementEnabled(true);
13
14 var shadowRoot1 = host.createShadowRoot();
15 shadowRoot1.appendChild(document.createTextNode('before'));
16 shadowRoot1.appendChild(document.createElement('shadow'));
17 shadowRoot1.appendChild(document.createTextNode('after'));
18 </script>
19
20 </body>
21 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/dom/shadow/shadowdom-for-textarea-with-placeholder-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698