Changes between Version 4 and Version 5 of WebKitGTK/StartHacking
- Timestamp:
- Jun 19, 2013, 8:47:28 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebKitGTK/StartHacking
v4 v5 134 134 === Keeping up to date === 135 135 136 WebK it development happens at a high speed. Most of the changes won't have a real impact on the feature or bug you are actually fixing while usually would mean rebuilding huge parts of the code. Therefore, it is better not to rebase master to our working branch too often.136 WebKkit development happens at a high speed. Most of the changes won't have a real impact on the feature or bug you are actually fixing while usually would mean rebuilding huge parts of the code. Therefore, it is better not to rebase master to our working branch too often. 137 137 138 138 Usually, you would want to rebase your work only when you have completed the task, but be also aware of parallel work that may affect your code. Plan ahead when you'll have a free slot of time in which to rebase and compile again as it will probably take several minutes. 139 139 140 140 141 == = Testing ===141 == Testing == 142 142 143 143 WebKit provides a really complete set of tets to check the code and your changes. You can get more information about them in WebKitGtkLayoutTests. … … 150 150 $ Tools/Scripts/run-launcher --gtk 151 151 }}} 152 * To run @MiniBrowser@(WebKit2):152 * To run MiniBrowser (WebKit2): 153 153 {{{ 154 154 #!sh … … 163 163 $ WebKitBuild/Release/Programs/MiniBrowser & 164 164 }}} 165 166 167 == Debugging == 168 169 Here you have some [wiki:WebKitGTK/Debugging debugging tips].