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 269615 - missing Javascript "classList" on the auto-suggest popup list
Summary: missing Javascript "classList" on the auto-suggest popup list
Status: NEW
Alias: None
Product: ide
Classification: Unclassified
Component: Code (show other bugs)
Version: 8.2
Hardware: PC Windows 8
: P3 normal (vote)
Assignee: issues@ide
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-01-20 16:07 UTC by pepebeans
Modified: 2017-01-20 16:11 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
IDE log (56.21 KB, text/plain)
2017-01-20 16:07 UTC, pepebeans
Details
screenshot (5.25 KB, image/png)
2017-01-20 16:11 UTC, pepebeans
Details

Note You need to log in before you can comment on or make changes to this bug.
Description pepebeans 2017-01-20 16:07:14 UTC
Product Version = NetBeans IDE 8.2 (Build 201609300101)
Operating System = Windows 8.1 version 6.3 running on amd64
Java; VM; Vendor = 1.8.0_101
Runtime = Java HotSpot(TM) 64-Bit Server VM 25.101-b13

Reproducibility: Happens every time

STEPS:
  * Type or copy/paste this code in the Html Editor:
 
     <button id="roundButton"></button>
    

    <script>
      var roundButton = document.querySelector("#roundButton");  
      roundButton.addEventListener("click", showMenu, false);
        
      function showMenu(){
        flyoutMenu.classList(....);
      }
     </script>

ACTUAL:
  "classList" method does not popup in the auto-suggest list.

EXPECTED:
  it should pop up
Comment 1 pepebeans 2017-01-20 16:07:18 UTC
Created attachment 163442 [details]
IDE log
Comment 2 pepebeans 2017-01-20 16:11:22 UTC
see new attatchment
Comment 3 pepebeans 2017-01-20 16:11:25 UTC
Created attachment 163443 [details]
screenshot