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

Summary: missing Javascript "classList" on the auto-suggest popup list
Product: ide Reporter: pepebeans
Component: CodeAssignee: issues@ide <issues>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 8.2   
Hardware: PC   
OS: Windows 8   
Issue Type: DEFECT Exception Reporter:
Attachments: IDE log
screenshot

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