]
Vlado Pakan closed JBIDE-17561.
-------------------------------
Verified with JBDS 8.0.0.Beta3-v20140706-0939-B172
DnD from Palette should not insert template inside xml comments
---------------------------------------------------------------
Key: JBIDE-17561
URL:
https://issues.jboss.org/browse/JBIDE-17561
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: jsp/jsf/xml/html source editing
Reporter: Viacheslav Kabanovich
Assignee: Viacheslav Kabanovich
Fix For: 4.2.0.Beta3
Position of insert shouldbe moved outside of comment nodes in the same way as it works
for opening/closing tags of elements.
1. Open an html 5 file
{code}
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
<meta name="viewport" content="width=device-width,
initial-scale=1">
<link rel="stylesheet"
href="http://code.jquery.com/mobile/1.4.0-rc.1/jquery.mobile-1.4.0-r...
/>
<script
src="http://code.jquery.com/jquery-1.10.2.min.js"></scrip...
<script
src="http://code.jquery.com/mobile/1.4.0-rc.1/jquery.mobile-1.4.0-rc...
</head>
<body>
<div data-role="page" id="page-1">
<div data-role="header">
<h1>Page Title</h1>
</div>
<div data-role="content">
<p>Page content goes here.</p>
<!--comment-->
<a href="" id="button-1" class="ui-btn ui-icon-bars
ui-btn-icon-left ui-corner-all">Link button</a>
</div>
</div>
</body>
</html>
{code}
2. Drop "Text Input" item from Mobile Palette into <!--comment--> node.
Assert: Template is inserted before or after the comment node, what is the nearest.
Failure: Template is inserted inside the comment node.