Fri, 2019-02-22 00:24
I'm getting the error: Stylesheets without CSSOM changes reparsed to check for errors. Refresh the page to also see errors from stylesheets changed from CSSOM and from style attributes. and can't figure out how to make a change that satifies it being an OM change. Here is the code for the HTML page:
<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Kid Kaos</title> <style> body { background-color: #000000 } </style> </head> <body> <div id="jsapp"></div> <script src="javascript/melonJS-1.1.0-min.js"></script> </body> </html>
Mon, 2019-02-25 22:05
#1
Why?
Why would you use an experimental technology that is subject to change, and that has a checkered support?
If you are experimenting for yourself, I think you will need to find a CSSOM discussion group.
For the canonical W3C man pages, see MDN WebDocs.
gary