Skip to content

Commit 21d163d

Browse files
authored
Remove mentions of firebug, which has not existed for many years (#364)
1 parent 417ffba commit 21d163d

File tree

5 files changed

+4
-9
lines changed

5 files changed

+4
-9
lines changed

src/main/markdown/doc/latest/DevGuideA11y.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -375,8 +375,7 @@ Make sure to test that a new widget is accessible! There are three basic steps i
375375

376376
* **DOM**
377377

378-
Since ARIA attributes are being added directly to the DOM, an easy way to check that the attributes are in the right location is to use a DOM inspector like
379-
[Firebug](http://getfirebug.com/) or the [Chrome developer tools](https://developers.google.com/chrome-developer-tools/).
378+
Since ARIA attributes are being added directly to the DOM, an easy way to check that the attributes are in the right location is to use your browser's dev tools's DOM inspector.
380379

381380
* **Events**
382381

src/main/markdown/doc/latest/DevGuideLogging.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,7 @@ Most of the default Handlers are very straightforward
140140

141141
* `SystemLogHandler` - Logs to stdout. These messages can only be seen in Development Mode — look for them in the DevMode window
142142
* `DevelopmentModeLogHandler` - Logs by calling method GWT.log. These messages can only be seen in Development mode — look for them in the DevMode window
143-
* `ConsoleLogHandler` - Logs to the javascript console, which is used by Firebug Lite (for IE), Safari and Chrome(?)
144-
* `FirebugLogHandler` - Logs to Firebug
143+
* `ConsoleLogHandler` - Logs to each browser's own built-in Dev Tools console
145144
* `PopupLogHandler` - Logs to the popup which appears in the upper left hand corner
146145
* `SimpleRemoteLogHandler` - Discussed below, in the Remote Logging section
147146

@@ -226,7 +225,6 @@ HTMLFormatter
226225
TextFormatter
227226
SystemLogHandler
228227
ConsoleLogHandler
229-
FirebugLogHandler
230228
DevelopmentModeLogHandler
231229
HasWidgetsLogHandler (and LoggingPopup to use with it)
232230
```

src/main/markdown/doc/latest/DevGuideTestingRemoteTesting.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,6 @@ Plugin. On our test systems, we use the following settings:
125125
* Type 'about:config' in the browser bar
126126
* Find browser.sessionstore.resume_from_crash and set it to false
127127
* Find browser.sessionstore.enabled and set it to false (if it exists)
128-
* Install [Firebug](http://getfirebug.com/) (useful for debugging)
129-
* Install the [GWT Developer Plugin](/missing-plugin/)
130128
* Whitelist the hosts that will launch the development mode code server. Since Selenium copies the profile for each test, you must do this now. If you do not, you will have to allow the remote connection for every test!
131129
* Restart Firefox
132130
* Tools -> Addons

src/main/markdown/doc/latest/FAQ_UI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ And here is how the screen ends up:
4444
What went wrong? We set the Dock Panel to fill up 100% of the space, and then each button to the left or right of the screen. At this point, it can be helpful to probe and see
4545
what the boundaries of your widgets are, because they may not be where you think.
4646

47-
The first technique is to use a DOM inspection tool, such as [Firebug](http://www.getfirebug.com) for the [Firefox](http://www.mozilla.com) browser. As you hover over elements in the DOM they will highlight in the browser window.
47+
The first technique is to use your browser's dev tools. As you hover over elements in the DOM they will highlight in the browser window.
4848

4949
Another technique you can use is to modify your GWT code to turn on borders on your panels (or other widgets.)
5050

src/main/markdown/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ You aren't limited to pre-canned widgets either. Anything you can do with the br
3535

3636
You can debug AJAX applications in your favorite IDE just like you would a desktop application, and in your favorite browser just like you would if you were coding JavaScript. The GWT developer plugin spans the gap between Java bytecode in the debugger and the browser's JavaScript.
3737

38-
Thanks to the GWT developer plugin, there's no compiling of code to JavaScript to view it in the browser. You can use the same edit-refresh-view cycle you're used to with JavaScript, while at the same time inspect variables, set breakpoints, and utilize all the other debugger tools available to you with Java. And because GWT's development mode is now in the browser itself, you can use tools like Firebug and Inspector as you code in Java.
38+
Thanks to the GWT developer plugin, there's no compiling of code to JavaScript to view it in the browser. You can use the same edit-refresh-view cycle you're used to with JavaScript, while at the same time inspect variables, set breakpoints, and utilize all the other debugger tools available to you with Java. And because GWT's development mode is now in the browser itself, you can use browser dev tools as you code in Java.
3939

4040
### <i class="icon_optimise"></i> Optimize
4141

0 commit comments

Comments
 (0)