From: <rb...@us...> - 2018-07-09 16:45:23
|
Revision: 15447 http://sourceforge.net/p/htmlunit/code/15447 Author: rbri Date: 2018-07-09 16:45:18 +0000 (Mon, 09 Jul 2018) Log Message: ----------- fix my last commit Modified Paths: -------------- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/event/MouseEvent.java Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/event/MouseEvent.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/event/MouseEvent.java 2018-07-09 13:29:28 UTC (rev 15446) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/event/MouseEvent.java 2018-07-09 16:45:18 UTC (rev 15447) @@ -320,6 +320,7 @@ setCtrlKey(ctrlKey); setAltKey(altKey); setShiftKey(shiftKey); + setMetaKey(metaKey); button_ = button; // Ignore the relatedTarget parameter; we don't support it yet. } |