Skip to content

Commit

Permalink
Returning less specific platform info from firefox driver. Fixes issu…
Browse files Browse the repository at this point in the history
…e 3354
  • Loading branch information
barancev committed Jun 9, 2014
1 parent dc4f5f6 commit 4d136e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion javascript/firefox-driver/js/nsCommandProcessor.js
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ nsCommandProcessor.prototype.getSessionCapabilities = function(response) {
'javascriptEnabled': true,
'nativeEvents': Utils.useNativeEvents(),
// See https://developer.mozilla.org/en/OS_TARGET
'platform': xulRuntime.OS,
'platform': (xulRuntime.OS == 'WINNT' ? 'WINDOWS' : xulRuntime.OS),
'rotatable': false,
'takesScreenshot': true,
'version': appInfo.version
Expand Down

0 comments on commit 4d136e2

Please sign in to comment.