You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@sling.apache.org by "Erik (JIRA)" <ji...@apache.org> on 2016/05/31 15:54:12 UTC

[jira] [Updated] (SLING-5754) Sightly renders form attributes always in lowercase

     [ https://issues.apache.org/jira/browse/SLING-5754?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Erik updated SLING-5754:
------------------------
    Description: 
Sightly always renders all HTML form attributes in lowercase:

HTML source:
{code}
<form [ngFormModel]="..." someAttribute="..."></form>
{code}

Actual output:
{code}
<form [ngformmodel]="..." someattribute="..."></form>
{code}

Expected output:
{code}
<form [ngFormModel]="..." someAttribute="..."></form>
{code}

For other HTML tags like <div>, <p>, <h1>, etc. it works fine.

  was:
Sightly always renders all HTML form attributes in lowercase:

HTML source:
{code}
<form [ngFormModel]="..." someAttribute="..."></form>
{code}

Actual output:
{code}
<form [ngformmodel]="..." someattribute="..."></form>
{code}

Expected output:
{code}
<form [ngFormModel]="..." someAttribute="..."></form>
{code}

For other HTML tags like <div>, <p>, <h1>, etc it works fine.


> Sightly renders form attributes always in lowercase
> ---------------------------------------------------
>
>                 Key: SLING-5754
>                 URL: https://issues.apache.org/jira/browse/SLING-5754
>             Project: Sling
>          Issue Type: Bug
>          Components: Scripting
>            Reporter: Erik
>
> Sightly always renders all HTML form attributes in lowercase:
> HTML source:
> {code}
> <form [ngFormModel]="..." someAttribute="..."></form>
> {code}
> Actual output:
> {code}
> <form [ngformmodel]="..." someattribute="..."></form>
> {code}
> Expected output:
> {code}
> <form [ngFormModel]="..." someAttribute="..."></form>
> {code}
> For other HTML tags like <div>, <p>, <h1>, etc. it works fine.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)