This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 218896 - Running page not updated without save when embedded style is changed
Summary: Running page not updated without save when embedded style is changed
Status: NEW
Alias: None
Product: web
Classification: Unclassified
Component: Inspection (show other bugs)
Version: 7.3
Hardware: PC Linux
: P4 normal (vote)
Assignee: Martin Entlicher
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-09-24 10:57 UTC by Vladimir Riha
Modified: 2016-02-10 14:25 UTC (History)
1 user (show)

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Vladimir Riha 2012-09-24 10:57:35 UTC
Use this sample HTML and run it. If you change color property of some div in Rule Editor, you have to save the file to see changes



<!DOCTYPE html>
<html>
    <head>

        <style>
            .a{                color: gray;            }
            .b{                color: blue;            }
        </style>
    </head>
    <body>
        <div class="a">
            AAA
        </div>
        <div class="b">
            BBB
        </div>
    </body>
</html>



Product Version: NetBeans IDE 7.3 Beta (Build 201209232010)
Java: 1.7.0_07; Java HotSpot(TM) Client VM 23.3-b01
System: Linux version 3.2.0-30-generic-pae running on i386; UTF-8; en_US (nb)
Comment 1 Vladimir Riha 2012-11-20 10:25:19 UTC
Thinking about it, it is P4 if any. It makes sense that html file has to be saved since embedded style is a part of the page. I guess that trying to "fix" this would force user to save HTML file although he might not want it.  Please feel free to close it
Comment 2 Jan Stola 2012-11-28 16:41:03 UTC
This can work the same way as modifications of non-embedded stylesheets work, i.e., without saving, but it would require some infrastructure changes. I am changing this issue to enhancement because the current behaviour is as designed for the current release.