Emit a guard newline in TextareaElement to preserve leading newlinesA browser's HTML parser ignores a single newline immediately after a<textarea> start tag, so a value whose first character is a
Emit a guard newline in TextareaElement to preserve leading newlinesA browser's HTML parser ignores a single newline immediately after a<textarea> start tag, so a value whose first character is a newline lostit on round-trip (e.g. saving a page or section whose source starts witha blank line silently dropped that line).Emit a guard newline right after the start tag so the one the browserdrops is absorbed and the value stays intact.
show more ...
Move PSR compliant tests to the apropriate namespacesHaving "inc" in the namespace is awkward. Instead the test classnamespaces now correspond to their real class namespaces.With further refacto
Move PSR compliant tests to the apropriate namespacesHaving "inc" in the namespace is awkward. Instead the test classnamespaces now correspond to their real class namespaces.With further refactorings we should get rid of most of the stuff intests/incthis is a continuation of #3812